summaryrefslogtreecommitdiffstats
path: root/install/usr
diff options
context:
space:
mode:
Diffstat (limited to 'install/usr')
-rw-r--r--install/usr16
1 files changed, 16 insertions, 0 deletions
diff --git a/install/usr b/install/usr
new file mode 100644
index 0000000..cdd3ca6
--- /dev/null
+++ b/install/usr
@@ -0,0 +1,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: