16 lines
341 B
Bash
Executable File
16 lines
341 B
Bash
Executable File
#!/bin/bash
|
|
build() {
|
|
add_module bcache
|
|
add_binary /usr/lib/udev/bcache-export-cached
|
|
add_binary /usr/lib/udev/bcache-register
|
|
add_binary /usr/lib/udev/probe-bcache
|
|
add_file /usr/lib/udev/rules.d/69-bcache.rules
|
|
}
|
|
help() {
|
|
cat <<HELPEOF
|
|
This hook will auto-assemble bcache devices.
|
|
Requires the udev hook.
|
|
HELPEOF
|
|
}
|
|
|