archboot/lib/initcpio/install/arch_fw

25 lines
468 B
Text
Raw Normal View History

2008-10-20 22:39:25 +02:00
# vim: set ft=sh:
install ()
{
2009-05-24 15:47:17 +02:00
MODULES=" $(checked_modules "/ieee1394/") "
2008-10-20 22:39:25 +02:00
MODULES=$(echo ${MODULES}) #trim whitespace
if [ -n "${MODULES}" ]; then
MODULES="${MODULES} sbp2 sd_mod"
fi
BINARIES=""
FILES=""
2009-06-17 16:13:21 +02:00
SCRIPT=""
2008-10-20 22:39:25 +02:00
}
help ()
{
cat<<HELPEOF
This hook loads the necessary modules for a firewire root device.
Detection will take place at runtime. To minimize the modules
in the image, add the autodetect hook too.
HELPEOF
}