2023-02-11 06:03:29 -06:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# SPDX-License-Identifier: GPL-3.0
|
|
|
|
|
|
|
|
build() {
|
|
|
|
add_module overlay
|
|
|
|
add_binary bash
|
|
|
|
add_binary tar
|
2023-04-25 06:14:01 -05:00
|
|
|
add_binary overlayfs-tools
|
2023-02-11 06:03:29 -06:00
|
|
|
add_runscript
|
|
|
|
}
|
|
|
|
|
|
|
|
help() {
|
|
|
|
cat <<HELPEOF
|
2023-04-25 06:14:01 -05:00
|
|
|
This provides a support for mounting the blend overlays. No
|
2023-02-11 06:03:29 -06:00
|
|
|
configuration is needed.
|
|
|
|
HELPEOF
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim: set ft=sh ts=4 sw=4 et:
|