Dawicontrol DC-624e
Aus Wiki
Version vom 28. Oktober 2013, 14:32 Uhr von Chris (Diskussion | Beiträge)
lspci -nnk
02:00.0 RAID bus controller [0104]: Marvell Technology Group Ltd. 88SE9230 PCIe SATA 6Gb/s Controller [1b4b:9230] (rev 01)
Subsystem: Device [dc93:624e]
Kernel driver in use: ahci
vi /etc/rc.local
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
if [ -e /sys/bus/pci/drivers/ahci ]; then
/bin/echo 1b4b 9230 > /sys/bus/pci/drivers/ahci/new_id 2>/dev/null
fi
exit 0