archboot/usr/lib/initcpio/install/arch_fw

18 lines
363 B
Text
Raw Normal View History

2012-05-27 11:40:23 +02:00
#!/bin/bash
2009-12-11 11:32:41 +01:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
2008-10-20 22:39:25 +02:00
build ()
2008-10-20 22:39:25 +02:00
{
2012-05-27 11:40:23 +02:00
add_checked_modules '/firewire/' 'firewire-sbp2' 'sr_mod' 'sd_mod'
2008-10-20 22:39:25 +02:00
}
help ()
{
cat<<HELPEOF
This hook loads the necessary modules for a firewire root device.
Detection will take place at runtime. To minimize the modules
in the image, add the autodetect hook too.
HELPEOF
}