summaryrefslogtreecommitdiffstats
path: root/install/filesystems
blob: 337a6a53613dd0184103f93892e106a5ce00455f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# vim: set ft=sh:

build()
{
    if [ "${autodetect_fs_detection_failed}" = "1" ]; then
        MODULES=" $(all_modules '/kernel/fs' | grep -v "nls")"
    else
        MODULES=" $(checked_modules '/kernel/fs' | grep -v "nls")"
    fi
    BINARIES=""
    FILES=""
    SCRIPT=""
}

help ()
{
cat<<HELPEOF
  This hook adds filesystems modules to the image. If you would like to
  minimize the modules installed in the image, add the autodetect hook too.
HELPEOF
}