mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
20 lines
273 B
Text
20 lines
273 B
Text
|
# 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
|
||
|
}
|