summaryrefslogtreecommitdiffstats
path: root/install/filesystems
blob: 64227bc029bff0e1428803493fc47af673bfbc7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

build() {
    if (( fs_autodetect_failed )); then
        MODULES=$(all_modules '/kernel/fs' | grep -v "nls")
    else
        MODULES=$(checked_modules '/kernel/fs' | grep -v "nls")
    fi
}

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
}

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