Um gleich zur Sache zu kommen - Auf meinem Laptop (Gericom Webgine) ist derzeit Debian woody installiert (Kernel 2.2.20) -> Installation hat nur mit dem boot prompt 'vanilla' funktioniert - kA wieso.
Nun ja, nachdem 2.2.20 schon recht alt ist, wollt ich selbst nen kernel backen - von kernel.org linux 2.6.4.tar.gz gesaugt, entpackt und nach längerem warten ein bzImage erstellt und alles in lilo eingetragen.
Nach einem reboot und versuch den neuen Kernel zu starten kommt es zu einem kernel panic mit folgenden Argumenten:
ZitatVFS: Cannot open root device "303" or unknown-block(3,3)
Please append a correct "root=" boot option
Kernel panic: VFS: Unable to mount root fs on unknown-block(3,3)
-----
meine diskaufteilung schaut folgendermassen aus
1024mb -> Swap Partition -> Swap
200mb -> /boot -> /dev/hda2 -> ext2
~300mb -> / -> /dev/hda3 -> ext2
8gb -> /home -> /dev/hda4 -> ext2
-----
vorgehensweise beim kernel kompilieren:
Zitatmake menuconfig -> make dep (Ausgabe = make dep is unnecesary now) -> make clean -> make bzImage -> make bzlilo
danach rdev /vmlinuz /dev/hda3
-----
das Ganze hab ich jetzt schon ca. 3mal wiederholt -> immer mit demselben friggin fehler -> ich weiß nicht mehr weiter
-----
lilo.conf (imho der wichtigste teil)
ZitatAlles anzeigen
# Kernel command line options that apply to all installed images go
# here. See: The `boot-prompt-HOWO' and `kernel-parameters.txt' in
# the Linux kernel `Documentation' directory.
#
# append=""
# Boot up Linux by default.
#
default=Linux
image=/vmlinuz
label=Linux
read-only
# restricted
# alias=1
image=/vmlinuz.old
label=LinuxOLD
read-only
optional
# restricted
# alias=2
# If you have another OS on this machine to boot, you can uncomment the
# following lines, changing the device name on the `other' line to
# where your other OS' partition is.
#
# other=/dev/hda4
# label=HURD
# restricted
# alias=3
other=/dev/hda1
label="Other(hda1)"
-----
verschiedene Anleitungen durchgenommen, aber der Fehler bleibt unergründlicherweise immer derselbe (obwohl es laut 'Anleitung' _funktionieren sollte_)
zB http://www.linuxhaven.de/dlhp/HOWTO/DE-…HOWTO.html#toc5
bevor ich mich auf folgende "stürze" (http://channel.debian.de/faq/), würd ich gern wissen, ob das Problem lösbar ist und wenn ja, wie?!
danke im vorraus
Troy