archboot/lib/initcpio/install/arch_tz

21 lines
363 B
Text
Raw Normal View History

2008-10-20 22:39:25 +02:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
install ()
{
MODULES=""
BINARIES="hwclock date ntpdate"
FILES=""
SCRIPT=""
for i in $(find /usr/share/zoneinfo ! -type d); do
add_file $i
done
2008-12-06 19:12:19 +01:00
add_file /usr/share/archboot/tz/tz /usr/bin/tz
2008-10-20 22:39:25 +02:00
}
help ()
{
cat<<HELPEOF
This hook includes the timezone data on an arch boot image.
HELPEOF
}