> now, I have a SATA drive 250GB, and my usb of 4GB. Those are the two > HardDrives that my pc should recognice.
> CONFIG_SATA_PMP=y > CONFIG_SATA_AHCI=y you probably don't have the right sata driver. the only one you're building is the generic AHCI driver which supports most of the newer sata chips. to see which driver your slackware uses please perform the following steps: "lspci | grep SATA" on one of my systems i get the following 00:1f.2 SATA controller: Intel... 03:00.0 SATA controller: JMicron... now get the details by using the leading PCI device codes "lspci -s 00:1f.2 -v" the last line here tells me "Kernel driver in use: ahci" thus the CONFIG_SATA_AHCI fits for this controller "lspci -s 03:00.0 -v" result is "Kernel driver in use: ahci", thus bingo again! on one of my other machines i get "in use: sata_mv" for the onboard marvel controller. thus "CONFIG_SATA_MV" is required too. if you don't see any SATA, try it with "ATA" or "IDE". maybe your controller is mapped in the bios to behave as a standard IDE controller! check your bios setings and be shure to have it setup correct. sata must be native, not raid or whatever other options are available. ahci usually is only available in native mode. be carefull: changing the bios might result in unavailable disks from within other operating-systems installed! tobias -- http://linuxfromscratch.org/mailman/listinfo/lfs-support FAQ: http://www.linuxfromscratch.org/lfs/faq.html Unsubscribe: See the above information page
