summaryrefslogtreecommitdiff
path: root/archiso/install/archiso
blob: 77fddc3d170ce3737e293d5e048a00fd4e1feade (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
install ()
{
    MODULES="cdrom ide-cd_mod ide-core ide-generic aufs squashfs isofs loop $(all_modules '/kernel/fs' | grep -v "nls") "
    MODULES="${MODULES} $(checked_modules "/usb/host" | grep -ve "_cs" -e "sl811-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=""
    add_dir /real_root
    add_dir /tmpfs
    add_dir /bootmnt
    SCRIPT="archiso"
}

# vim:ft=sh:ts=4:sw=4:et: