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