archiso/install/boot-cd
Simo Leone a23e702eb6 Changed ide-cd to ide-cd_mod
Damnit 2.6.25

Signed-off-by: Simo Leone <simo@archlinux.org>
2008-05-17 02:12:38 -05:00

18 lines
511 B
Bash

install ()
{
MODULES="cdrom ide-cd_mod ide-core ide-generic unionfs squashfs isofs $(all_modules '/kernel/fs' | grep -v "nls") "
# 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
BINARIES=""
FILES=""
SCRIPT="boot-cd"
}
# vim:ft=sh:ts=4:sw=4:et: