Hab heute zum ersten Mal einen Kernel kompiliert und das hat auch soweit funktioniert. Wenn ich allerdings den Kenel starten will bekomme ich folgende Fehlermeldung:
Code: Alles auswählen
RAMDISK: Couldn`t find valid RAM disk image starting at 0
VFS: Cannot open root device "307" or unknown-block (3,7)
Please append a correct "root=" boot option
Kernel panic: VFS: Unable to mount root fs on unknown_block (3,/7)
Da heißt es man soll die Filesysteme in den Kernel einbinden usw. Das ist gut und schön, aber wo mache ich welche Eintragungen in der Kernelkonfiguration damit das eingebunden wird?
Liegt das nicht eher am RAMDISK als an dem Filesystem:
Meine lilo.config sieht so aus:
Code: Alles auswählen
# Boot up Linux by default.
# der neue Kernel 2.4.18-686
image = /vmlinuz
label=Debian-2.4.18
root=/dev/hda7
initrd = /initrd.img
read-only
# restricted
# alias=1
#Der Kernel 2.6.0 von mir kompiliert
image = /vmlinuz_2.6.0
label=Debian2.6
root=/dev/hda7
read-only
# restricted
# alias=1
#Der Standardkernel von Debian
#2.2.20 von CD`s installiert
image=/vmlinuz.old
label=LinuxOLD
read-only
optional
# restricted
# alias=2
TheGreenman