2006-08-30 05:32:35 +00:00
|
|
|
install ()
|
|
|
|
{
|
2008-05-17 07:12:38 +00:00
|
|
|
MODULES="cdrom ide-cd_mod ide-core ide-generic unionfs squashfs isofs $(all_modules '/kernel/fs' | grep -v "nls") "
|
2008-04-03 01:29:01 +00:00
|
|
|
|
|
|
|
# need usb modules for external drives
|
|
|
|
MODULES="${MODULES} $(checked_modules "/usb/host" | grep -ve "_cs" -e "sl1811-hcd" -e "isp116x-hcd")"
|
|
|
|
MODULES=$(echo ${MODULES}) #trim whitespace
|
|
|
|
if [ "x${MODULES}" != "x" ]; then
|
|
|
|
MODULES="${MODULES} usb_storage sd_mod sr_mod"
|
|
|
|
fi
|
|
|
|
|
2006-08-30 05:32:35 +00:00
|
|
|
BINARIES=""
|
|
|
|
FILES=""
|
2007-10-05 19:27:52 +00:00
|
|
|
SCRIPT="boot-cd"
|
2006-08-30 05:32:35 +00:00
|
|
|
}
|
2007-10-11 01:12:47 +00:00
|
|
|
|
|
|
|
# vim:ft=sh:ts=4:sw=4:et:
|