|
|
|
|
|
|
|
|
|
|
xen-devel
RE: [Xen-devel] xen brings machine in a boot loop. Serial console output
OK, I think the mystery is solved: I was mislead by the MHz of the CPU;
233 Mhz, I looked it up a intel cpu product table and concluded that it
must be a Pentium Pro. But after looking a bit more carefully it seems
to be a Pentium MMX at 233 Mhz, and that is a P5 class. Pardon me for
this mistake.
Lukily there is always something good in a bad experience, I learned a
lot about serial consoles...
hmm pentium does support 4mb pages, BUT, i'm not sure about cmove (I think
it was introduced in Pentium Pro), apply folllowing patch and see if it
helps
--- 1.32/xen/arch/x86/Rules.mk 2004-11-17 06:43:29 -07:00
+++ edited/xen/arch/x86/Rules.mk 2004-12-07 14:16:40 -07:00
@@ -23,7 +23,7 @@ CFLAGS += $(call test-gcc-flag,-fno-sta
CFLAGS += $(call test-gcc-flag,-fno-stack-protector-all)
ifeq ($(TARGET_SUBARCH),x86_32)
-CFLAGS += -m32 -march=i686
+CFLAGS += -m32 -march=i586
LDFLAGS := --oformat elf32-i386
endif
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxxx
https://lists.sourceforge.net/lists/listinfo/xen-devel
|
|
|
|
|