mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-14 19:59:02 +08:00
16 lines
274 B
Plaintext
16 lines
274 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
build() {
|
||
|
add_module btrfs
|
||
|
add_binary btrfs
|
||
|
add_binary btrfsck
|
||
|
add_runscript
|
||
|
}
|
||
|
|
||
|
help() {
|
||
|
cat <<HELPEOF
|
||
|
This hook provides support for multi-device btrfs volumes. This hook
|
||
|
is only needed for initramfs images which do not use udev.
|
||
|
HELPEOF
|
||
|
}
|