Page 1 of 1

1.0.5 Chubby Puppy HD install does not load USB driver.

Posted: Wed 12 Oct 2005, 16:59
by cplater
Anybody seen this before and know the fix?

I've installed 1.0.5 Chubby over a 1.0.4 version a fat32 partition. It booted fine from CD but the HD boot fails to load the usb driver and pauses. It does continue but the mouse is USB only so I need it. The error messages say:
/lib/modules/2.4.29/scsi/usbcore.0.gz not found?

It may be a grub thing but I'm not sure. I manually removed the old puppy version and did a fresh install.

This is my current grub file which used to work with 1.0.4 fine:

Code: Select all

 generated by 'grubconfig'.  Thu Aug  4 15:50:17 2005
#
# Start GRUB global section
timeout 20
color light-gray/blue black/light-gray
# End GRUB global section
# Linux bootable initrd config begins
#
title Slackware 10.2
	root (hd1,0)
	kernel /boot/vmlinuz root=/dev/hdd1 noinitrd
title Puppy Linux 
	rootnoverify (hd0,0)
	kernel (hd0,6)/vmlinuz root=/dev/ram PFILE=pup001-none-262144
	initrd (hd0,6)/image.gz
	boot 
title WindozeXP
	rootnoverify (hd0,0)
	chainloader +1
Any body seen this before?

Posted: Sat 15 Oct 2005, 03:23
by Cerberus
i have teh same problem, but i hooked up an old PS/2 mouse in the meantime

Posted: Mon 17 Oct 2005, 20:13
by Guest
I fingered it out. Needed to add the size to my grub statement to get the drivers loaded. The default ram disk size is too small.
Was:

Code: Select all

title Puppy Linux
   rootnoverify (hd0,0)
   kernel (hd0,6)/vmlinuz root=/dev/ram FILE=pup001-none-262144
   initrd (hd0,6)/image.gz
   boot 
Now:

Code: Select all

title Puppy Linux 
	rootnoverify (hd0,0)
	kernel (hd0,6)/vmlinuz root=/dev/ram ramdisk_size=13312 PFILE=pup001-none-262144
	initrd (hd0,6)/image.gz
	boot 
I got the size from the config file, isolinux.cfg, on the CD.