archboot/usr/lib/initcpio/install/arch_kexec

17 lines
302 B
Text
Raw Normal View History

2012-05-27 11:47:05 +02:00
#!/bin/bash
2007-02-22 23:46:50 +01:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
2007-02-22 23:46:50 +01:00
{
2012-05-27 11:47:05 +02:00
add_binary "/sbin/kexec"
2007-02-22 23:46:50 +01:00
add_file "/etc/rc.d/kexec"
2008-12-06 19:12:19 +01:00
add_file "/usr/share/archboot/kexec/etc/conf.d/kexec" "/etc/conf.d/kexec"
2007-02-22 23:46:50 +01:00
}
help ()
{
cat<<HELPEOF
This hook includes kexec on an arch boot image.
HELPEOF
}