16 lines
450 B
Bash
16 lines
450 B
Bash
# vim: set ft=sh:
|
|
install ()
|
|
{
|
|
MODULES="cdrom ide-cd ide-core ide-generic unionfs squashfs $(all_modules '/kernel/fs' | grep -v "nls") "
|
|
|
|
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
|
|
BINARIES=""
|
|
FILES=""
|
|
SCRIPT="boot-usb"
|
|
}
|