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

build() {
    add_binary findmnt
    add_runscript
}

help() {
    cat <<HELPEOF
This provides a support for mounting /usr via a late running hook. No
configuration is needed, as the mount options will be pulled directly from the
fstab on the real root device.
HELPEOF
}

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