blob: 15200882346318393eba4d083d222c80df55bacd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
build() {
add_runscript
}
help() {
cat <<HELPEOF
Support for mounting Arch root from a subdirectory.
Syntax: rootdir=<dir>
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et:
|