archboot/usr/lib/initcpio/install/arch_devicemapper

18 lines
288 B
Text
Raw Normal View History

2012-05-26 12:07:05 +02:00
#!/bin/bash
2009-11-23 22:24:01 +01:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
2009-11-23 22:24:01 +01:00
{
2012-05-26 12:07:05 +02:00
add_checked_modules 'md/dm-*'
add_binary "/sbin/dmsetup"
add_binary "/sbin/dmeventd"
2009-11-23 22:24:01 +01:00
add_dir "/dev/mapper"
}
help ()
{
cat<<HELPEOF
This hook includes dmraid on an arch boot image.
HELPEOF
}