diff options
Diffstat (limited to 'install')
-rw-r--r-- | install/autodetect | 23 | ||||
-rw-r--r-- | install/filesystems | 2 | ||||
-rw-r--r-- | install/ide | 2 | ||||
-rw-r--r-- | install/sata | 2 | ||||
-rw-r--r-- | install/scsi | 2 | ||||
-rw-r--r-- | install/udev | 7 | ||||
-rw-r--r-- | install/usb | 4 |
7 files changed, 32 insertions, 10 deletions
diff --git a/install/autodetect b/install/autodetect index c851a4b..70dc779 100644 --- a/install/autodetect +++ b/install/autodetect @@ -17,7 +17,17 @@ install () for m in $AUTODETECT; do echo $(basename ${m//\.ko/}) >> $modtmp + # fixing missing depends for filesystems [ "$m" == "ext3" ] && echo "jbd" >> $modtmp + [ "$m" == "afs" ] && echo "rxrpc" >> $modtmp + [ "$m" == "cramfs" ] && echo "zlib_inflate" >> $modtmp + [ "$m" == "isofs" ] && echo "zlib_inflate" >> $modtmp + [ "$m" == "msdos" ] && echo "fat" >> $modtmp + [ "$m" == "vfat" ] && echo "fat" >> $modtmp + [ "$m" == "ocfs2" ] && echo "ocfs2_dlm" >> $modtmp + [ "$m" == "ocfs2" ] && echo "jbd" >> $modtmp + [ "$m" == "ocfs2" ] && echo "ocfs2_nodemanager" >> $modtmp + [ "$m" == "ocfs2" ] && echo "configfs" >> $modtmp done grep "file /lib/modules" ${FILELIST} >>$modall @@ -35,3 +45,16 @@ install () FILES="" SCRIPT="" } + +help () +{ +cat <<HELPEOF + This hook shrinks your initramdisk to a smaller size + by autodetecting your needed modules. + Please take a look at the included modules for completeness, + else your system might be unbootable. + Valid Hooks are: base,udev,ide,scsi,sata,usb,fw,filesystems + Put this hook at the end of your valid hooks. + Put other hooks behind autodetect hook. +HELPEOF +} diff --git a/install/filesystems b/install/filesystems index 1da1f13..bebef3e 100644 --- a/install/filesystems +++ b/install/filesystems @@ -13,6 +13,6 @@ help () cat<<HELPEOF This hook is responsible for loading filesystems for the root device. Detection will be done at runtime. If you would like to minimize the - modules installed in the image, use the -auto flavor. + modules installed in the image, add the autodetect hook too. HELPEOF } diff --git a/install/ide b/install/ide index b8aafc3..ac0ea62 100644 --- a/install/ide +++ b/install/ide @@ -13,6 +13,6 @@ help () cat<<HELPEOF This hook loads the necessary modules for an ide root device. Detection will take place at runtime. To minimize the modules - in the image, use the -auto flavor. + in the image, add the autodetect hook too. HELPEOF } diff --git a/install/sata b/install/sata index e50ffee..a31b55a 100644 --- a/install/sata +++ b/install/sata @@ -13,6 +13,6 @@ help () cat<<HELPEOF This hook loads the necessary modules for an sata root device. Detection will take place at runtime. To minimize the modules - in the image, use the -auto flavor. + in the image, add the autodetect hook too. HELPEOF } diff --git a/install/scsi b/install/scsi index 0525ae4..fc6f940 100644 --- a/install/scsi +++ b/install/scsi @@ -15,6 +15,6 @@ help () cat<<HELPEOF This hook loads the necessary modules for an scsi root device. Detection will take place at runtime. To minimize the modules - in the image, use the -auto flavor. + in the image, add the autodetect hook too. HELPEOF } diff --git a/install/udev b/install/udev index 120b3f2..bfe4a1b 100644 --- a/install/udev +++ b/install/udev @@ -11,15 +11,14 @@ install () add_file /lib/initcpio/udev/udevsettle /sbin/udevsettle add_file /lib/initcpio/udev/udev.rules /etc/udev/rules.d/udev.rules add_file /lib/initcpio/udev/start_udev /etc/start_udev - add_file /lib/initcpio/udev/load-modules.sh /lib/udev/load-modules.sh add_file /lib/initcpio/udev/modalias_ieee1394 /lib/udev/modalias_ieee1394 } help () { cat <<HELPEOF - This hook will use udev to create your root device node. - It is recommended to use this hook if you are using any - non ide/sata block device. + This hook will use udev to create your root device node + and detect the needed modules for your root device. + It is recommended to use this hook instead of modload. HELPEOF } diff --git a/install/usb b/install/usb index 4d53e8f..0e655bd 100644 --- a/install/usb +++ b/install/usb @@ -2,7 +2,7 @@ install () { - MODULES=" $(all_modules "/usb/" | grep -ve "_cs" -e "sl1811-hcd" -e "isp116x-hcd") + MODULES=" $(all_modules "/usb/host" | grep -ve "_cs" -e "sl1811-hcd" -e "isp116x-hcd") usb_storage usbhid sd_mod sr_mod " BINARIES="" FILES="" @@ -14,6 +14,6 @@ help () cat<<HELPEOF This hook loads the necessary modules for an usb root device. Detection will take place at runtime. To minimize the modules - in the image, use the -auto flavor. + in the image, add the autodetect hook too. HELPEOF } |