I run a script file to kldload the necessary modules for USB before I plug in the USB flash drive. My problem is that I do not get a listing of USB drives with #gpart show. However, strangely the USB drive shows up in gnome and it even auto-mounts.
I have a SATA HDD and relevant kernel config entry is below. I recently disabled ata after a compile error because I found that da/ahci and ata should not be enabled at the same time (it's an either/or choice).
Most likely I need to kldload something for gpart to recognize the partitions but what that "something" is remains a mystery.
I have a SATA HDD and relevant kernel config entry is below. I recently disabled ata after a compile error because I found that da/ahci and ata should not be enabled at the same time (it's an either/or choice).
Code:
device ahci
device scbus
device da
#device ata
#device atadisk
#device atapicd
#options ATA_STATIC_ID
Most likely I need to kldload something for gpart to recognize the partitions but what that "something" is remains a mystery.