This occurs if you're using a more recent compiler than the kernel can be compiled for, for example gcc 3.x to compile a kernel (kernels only work with <gcc 3). try:
make CC=gcc-2.95 bzImage
(if you want to use gcc-2.95)
In /usr/src/linux/README (at least for kernel versions 2.4.x and below) you will find the following snippet:
COMPILING the kernel: - Make sure you have gcc 2.95.3 available. gcc 2.91.66 (egcs-1.1.2) may also work but is not as safe, and *gcc 2.7.2.3 is no longer supported*.
But of course you always read the compile instructions for software you download, right? :)
The fact is, however, that this isn't a problem with the compiler. gcc 3.x is just doing what it should be doing: checking for errors. If you actually look at the source, you'll find the line
__u8 short slot_tabelen;
which is obviously an error. Go talk to the maintainer, kids ;)
Yes, this is true, but the point is that the rest of the compile won't go that smoothly either, even if it does compile chances are that there are going to be "hidden" problems as the compiler compiles away things that the developer was relying on etc.
LD .tmp_vmlinux1 drivers/built-in.o(.text+0xa898a): In function `splash_getraw': : undefined reference to `con2fb_map' drivers/built-in.o(.text+0xa918c): In function `splash_verbose': : undefined reference to `con2fb_map' drivers/built-in.o(.text+0xa9670): In function `splash_status': : undefined reference to `con2fb_map' drivers/built-in.o(.text+0xa97a4): In function `splash_read_proc': : undefined reference to `con2fb_map' drivers/built-in.o(.text+0xa997d): In function `splash_write_proc': : undefined reference to `con2fb_map' make: *** [.tmp_vmlinux1] Error 1
You need to have framebuffer console support compiled in. Can't be a module!
Set CONFIG_FRAMEBUFFER_CONSOLE=y in the .config.
Jonte: Good stuff man.. works great :) I also found out that if you enable the VGA text console, the bootsplash wont be used (so disable it;)
Add the following lines to your apt/sources.conf:
# kernel 2.6 and related things deb http://www.backports.org/debian woody kernel-2.6 deb http://www.backports.org/debian woody module-init-tools
do an apt-get dist-update ; apt-get dist-upgrade make sure that module-init-tools is installed
Either do apt-get install kernel-image-2.6 and pick an appropriate image from the list available (ie, kernel-image-2.6-686) or download, compile and install a kernel yourself.
Update your bootloader, and it should just work.
Kernel 2.6 is now available in RawHide?.
If you still want to use Arjan's pre-Rawhide kernel builds, keep reading.
Add the following lines to your apt/sources.conf (What, you don't use apt?)
# Arjan's 2.6 series kernel repository rpm http://people.redhat.com arjanv/2.5 kernel rpm-src http://people.redhat.com arjanv/2.5 kernel
Select the latest snapshot to install:
[root@brian root]# apt-get install kernel Reading Package Lists... Done Building Dependency Tree... Done Package kernel is a virtual package provided by: kernel-smp#2.6.0-0.test5.1.34 2.6.0-0.test5.1.34 kernel-BOOT#2.6.0-0.test5.1.34 2.6.0-0.test5.1.34 kernel#2.6.0-0.test5.1.34 2.6.0-0.test5.1.34 kernel-smp#2.4.20-9 2.4.20-9
(in this case, 2.6.0-0.test5.1.34)
[root@brian root]# apt-get install kernel#2.6.0-0.test5.1.34
Wait for about 20Mb of downloads...
Things to note:
See
See TroubleshootingStartUp for some problems while booting kernels.
See KernelTweaking for tuning hints.
2 pages link to KernelNotes: