Ticket #2023: initramfs-add-ide-options.patch

File initramfs-add-ide-options.patch, 683 bytes (added by bryan@linuxfromscratch.org, 17 years ago)

Add IDE option support to the initramfs

  • init.in

     
    150150                option=${param#*.}
    151151                echo "options $module $option" >>/etc/modprobe.conf
    152152                ;;
     153        ide=*|idebus=*|ide[0123]=*|hd[a-z]=*)
     154                ide_core_opts="$ide_core_opts $param"
     155                ;;
    153156        pata)
    154157                PATA=1
    155158                ;;
     
    186189        esac
    187190done
    188191
     192if [ -n "$ide_core_opts" ] ; then
     193        # remove the extra space from the beginning
     194        ide_core_opts="${ide_core_opts# }"
     195        echo "options ide_core options=\"$ide_core_opts\"" >>/etc/modprobe.conf
     196fi
     197
    189198case "$PATA" in
    190199        0)
    191200                for driver in /lib/modules/`uname -r`/kernel/drivers/ata/pata_*.ko ; do