mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-11 00:00:03 +03:00
18 lines
260 B
Bash
18 lines
260 B
Bash
#!/bin/bash
|
|
|
|
build() {
|
|
add_module `bcachefs`
|
|
add_binary "bcachefs"
|
|
|
|
add_runscript
|
|
|
|
}
|
|
|
|
help() {
|
|
cat <<HELPEOF
|
|
This hook is for getting the bcachefs unlock prompt at boot
|
|
HELPEOF
|
|
}
|
|
|
|
# vim set ft=sh ts=4 sw=4 et:
|