mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-10 00:00:04 +03:00
17 lines
221 B
Bash
17 lines
221 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:
|