archboot/usr/lib/initcpio/install/arch_licenses

17 lines
294 B
Text
Raw Normal View History

2012-05-27 11:53:08 +02:00
#!/bin/bash
2007-10-22 07:56:38 +02:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
2007-10-22 07:56:38 +02:00
{
2009-05-24 15:47:17 +02:00
for i in $(find /usr/share/licenses/common ! -type d -type f); do
add_file $i
done
2012-05-27 11:53:08 +02:00
add_runscript
2007-10-22 07:56:38 +02:00
}
help ()
{
cat<<HELPEOF
This hook includes the common licenses on an arch boot image.
HELPEOF
}