mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
19 lines
273 B
Bash
19 lines
273 B
Bash
# vim: set ft=sh:
|
|
|
|
install ()
|
|
{
|
|
MODULES=" dm-mod "
|
|
BINARIES=""
|
|
FILES=""
|
|
SCRIPT="lvm2"
|
|
|
|
add_dir "/dev/mapper"
|
|
add_file "/sbin/lvm.static" "/bin/lvm"
|
|
}
|
|
|
|
help ()
|
|
{
|
|
cat<<HELPEOF
|
|
This hook loads the necessary modules for an LVM2 root device.
|
|
HELPEOF
|
|
}
|