19 lines
334 B
Bash
19 lines
334 B
Bash
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: GPL-3.0
|
|
|
|
build() {
|
|
add_module overlay
|
|
add_binary bash
|
|
add_binary tar
|
|
add_binary overlayfs-tools
|
|
add_runscript
|
|
}
|
|
|
|
help() {
|
|
cat <<HELPEOF
|
|
This provides a support for mounting the blend overlays. No
|
|
configuration is needed.
|
|
HELPEOF
|
|
}
|
|
|
|
# vim: set ft=sh ts=4 sw=4 et:
|