I searched and asked and tried a long time. My 128-MB USB-Stick from Aldi (Medion) works now and here is the way how I got everything working.
I am using the Kernel 2.4.20 - gentoo-sources
Go to the kernel source directory and make the menu
Code: Select all
cd /usr/src/linux
make menuconfig
Code: Select all
SCSI support --->
Now we go to:
Code: Select all
File systems --->
Code: Select all
<M> DOS FAT fs support
<M> MSDOS fs support
< > UMSDOS: Unix-like file system on top of standard MSDOS fs
<M> VFAT (Windows-95) fs support
Code: Select all
USB support --->
Code: Select all
<M> Support for USB
Code: Select all
<M> UHCI (Intel PIIX4, VIA, ...) support
Code: Select all
<M> OHCI (Compaq, iMacs, OPTi, SiS, ALi, ...) support
Code: Select all
<M> USB Mass Storage support
That's it I think! Exit and save configuration. Then compile and install the kernel as described in the Gentoo X86 Installation Guide and reboot your system with the new kernel.
You should be able now to load the folowing modules using modprobe
Code: Select all
modprobe usbcore
modprobe usb-storage
modprobe vfat
Code: Select all
modprobe usb-uhci
Code: Select all
modprobe usb-ohci
Code: Select all
modprobe scsi_mod
modprobe sd_mod
Code: Select all
dmesg
Code: Select all
hub.c: new USB device 00:09.0-2, assigned address 3
usb-storage: act_altsettting is 0
usb-storage: id_index calculated to be: 47
usb-storage: Array length appears to be: 68
usb-storage: Vendor: JMTek
usb-storage: Product: USBDrive
usb-storage: USB Mass Storage device detected
usb-storage: Endpoints: In: 0xe55f7d40 Out: 0xe55f7d54 Int: 0xe55f7d68 (Period 255)
usb-storage: Found existing GUID 0c7600050000000000000000
WARNING: USB Mass Storage data integrity not assured
USB Mass Storage device found at 3
Code: Select all
mkdir /mnt/usbstick
mount -t vfat /dev/sda1 /mnt/usbstick
Now you can optionally insert a new line to your /etc/fstab like
Code: Select all
# MY USB STICK
/dev/sda1 /mnt/stick auto noauto,user,exec 0 0 When you have KDE installed and you want a nice Icon on your Desktop then you can find some here or here.
I hope this Howto can help a bit.
Prego
------
Changelog
------
29.10.2003 Added FSTAB and SCSI things, else the OHCI stuff. Thanks to all users here in this forum...






