Cannot mount reiserfs with those flags. Trying no flags.
Well, ok, trying read-only with no flags.
mount: Error 6 cannot mount local filesystem
Then it goes a few more lines until the kernel panic, which, of course is cannot find init since my filesystem is not mounted.
I did a 'man mount' and there is no 'Error 6' listed. I found out by Googling that Error 6 is "No such device or address". Here is my entry in /etc/lilo.conf:
CODE
image=/boot/vmlinuz-2.6.0
label="linux-2.6.0-tes"
root=/dev/hda1
initrd=/boot/initrd-2.6.0.img
append="devfs=mount hdc=ide-scsi hdd=ide-scsi"
read-only
label="linux-2.6.0-tes"
root=/dev/hda1
initrd=/boot/initrd-2.6.0.img
append="devfs=mount hdc=ide-scsi hdd=ide-scsi"
read-only
and /dev/hda1's entry in /etc/fstab:
/dev/hda1 / reiserfs notail 1 1
I wonder if it's the 5th and 6th fields that the new kernel doesn't like? Anyone else have any ideas?