archboot/lib/initcpio/install/arch_tz

23 lines
466 B
Text
Raw Normal View History

2008-10-20 22:39:25 +02:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
2008-10-20 22:39:25 +02:00
{
MODULES=""
2011-07-25 21:53:01 +02:00
BINARIES="/sbin/hwclock /bin/date /usr/bin/ntpdate"
2008-10-20 22:39:25 +02:00
FILES=""
SCRIPT=""
2009-05-08 08:05:45 +02:00
for i in $(find /usr/share/zoneinfo ! -type d); do
add_file $i
done
2009-05-24 15:47:17 +02:00
add_file "/usr/share/archboot/tz/tz" "/usr/bin/tz"
2009-05-08 08:05:45 +02:00
# fix licenses
2011-05-09 14:28:33 +02:00
add_file "/usr/share/licenses/ntp/LICENSE"
2008-10-20 22:39:25 +02:00
}
help ()
{
cat<<HELPEOF
This hook includes the timezone data on an arch boot image.
HELPEOF
}