summaryrefslogtreecommitdiff
path: root/archiso/install/boot-cd
blob: 2d9686915c5ce6da400ac4d45344961aef63b516 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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: