vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Okay... Looks like I've got myself another problem here... :-/ I'm using the Gentoo Xen kernel sources, based upon kernel 2.6.22-r6. The /dom0/ kernel built effortlessly, but when I build the /domU/ kernel, I get the following - I'm typing this over by hand as I can't copy paste from the other machine: arch/x68_64/kernel/built-in.o: In function 'intel_bugs': early-quirks.c make[1]: *** [.tmp_vmlinux1] Error 1 make: *** [_all] Error 2 I did not get any such warning when I built the host kernel, and it's quite weird that the build process talks about Intel bugs when I use the exact same CPU type as for my host kernel, which is the AMD Opteron. The machine has two dualcore Opteron 218HE processors anyway. Can anybody give me a clue as to what this is about and how to fix it? -- Aragorn (registered GNU/Linux user #223157) |
| |||
| Aragorn wrote: > Okay... Looks like I've got myself another problem here... :-/ > > I'm using the Gentoo Xen kernel sources, based upon kernel 2.6.22-r6. > The /dom0/ kernel built effortlessly, but when I build the /domU/ kernel, > I get the following - I'm typing this over by hand as I can't copy paste > from the other machine: > > arch/x68_64/kernel/built-in.o: In function 'intel_bugs': > early-quirks.c > 'quirk_intel_irqbalance' make[1]: *** [.tmp_vmlinux1] Error 1 > make: *** [_all] Error 2 You might find these threads from Gentoo forums useful: http://forums.gentoo.org/viewtopic-t-596489.html http://forums.gentoo.org/viewtopic-t-579446.html |
| ||||
| pk wrote: > Aragorn wrote: > >> Okay... Looks like I've got myself another problem here... :-/ >> >> I'm using the Gentoo Xen kernel sources, based upon kernel 2.6.22-r6. >> The /dom0/ kernel built effortlessly, but when I build the /domU/ kernel, >> I get the following - I'm typing this over by hand as I can't copy paste >> from the other machine: >> >> arch/x68_64/kernel/built-in.o: In function 'intel_bugs': >> early-quirks.c >> 'quirk_intel_irqbalance' make[1]: *** [.tmp_vmlinux1] Error 1 >> make: *** [_all] Error 2 > > You might find these threads from Gentoo forums useful: > > http://forums.gentoo.org/viewtopic-t-596489.html > http://forums.gentoo.org/viewtopic-t-579446.html Brilliant!! Dude, you're a lifesaver, thanks a bunch! ;-) While most workarounds seemed to disable PCI or SMP, the patch I found there - basically editing a file and adding the... #ifndef CONFIGURE_XEN_UNPRIVILEGED ... ... #endif .... made the kernel build normally. ;-) So now I have SMP and I can still directly access PCI devices from within /domU./ Now all I have to do is figure out how to make the /domU/ character mode console bind to my nVidia PCIe card rather than the paravirtualized Radeon PCI card. It should be no problem in X11, but I'm not too familiar with how the character mode console binds to a graphics adapter. Any clues on that? -- Aragorn (registered GNU/Linux user #223157) |