git-svn-id: http://phraktured.net/archiso@15 00a9fe69-e71b-0410-bb23-df0e5024db41

This commit is contained in:
Aaron Griffin 2006-09-29 06:19:06 +00:00
parent 2b5cd0819f
commit 49284a96fa
6 changed files with 0 additions and 0 deletions

15
install/boot-usb Normal file
View file

@ -0,0 +1,15 @@
# 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"
}