HD Install :: don't start whith hd
modprobe aha152x irq=11
It work whith
modprobe aha152x io=0x340 irq=11
The installation whith "sudo dsl-hdinstall" has'nt error, but when i reboot the machine the tenminal print as follow
Kmod: failed to exec /sbin/modprobe -s -k block-major-8, errno = 2
VFS: Cannot open root device "801" or 08:01
Please append a correct "root=" boot option
Kernel panic: VFS: Unable to mount root fs on 08:01
I formatted the disk sda1 15Mbyte sda2 500Mbyte
may be invert partition?
or LILO don't work propement correctly?
Many thank
I know of 2 possible problems that could be here.
1) Your BIOS / Bootloader (LILO) will not boot from this type of SCSI hard drive controller.
2) Your Bootloader does the job correctly, but your miniroot filesystem and init scripts do not load up the correct SCSI driver.
You will need to uncompress minirt24.gz and mount it as a loop filesystem and then add your aha152x.o driver file into the mountpoint.
Then you will need to add this command to your init script:
insmod aha152x io=0x340 irq=11
This is not an easy job for the novice user. I wish you luck.
My bootloader work correcly (LILO)
I've uncompress minirt24.gz but is incoprensive format
Where was an applicatition for do this
You can explain the correct process?
Open an xterminal and type:
sudo su
gunzip minirt24.gz
mkdir image
mount -o loop -t ext2 minirt24 image
Then copy the /lib/modules/2.4.26/kernel/drivers/scsi/aha152x.o (I think that the path is correct) file into the appropriate subdirectory inside the image directory.
Then edit one of the init scripts, find out where the initial driver modules are loaded and add
insmod aha152x
at the end of this list and then save the script and exit the image directory back to your home directory. Then type:
umount minirt24
gzip minirt24
and then copy your new minirt24.gz file so that it overwrites your old minirt24.gz file that is accessed by your boot loader. It is a good idea to backup the original minirt24.gz file in case you have really hosed things somehow.
This is about as good of an explanation as I can give right now. Hope this helps.
Next Page...
original here.