archboot/usr/lib/initcpio/install/archboot_tz
2022-12-20 16:12:24 +01:00

16 lines
310 B
Bash

#!/usr/bin/env bash
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
{
map add_binary hwclock tzselect
add_full_dir "/usr/share/zoneinfo"
add_file "/usr/bin/archboot-tz.sh" "/usr/bin/tz"
}
help ()
{
cat<<HELPEOF
This hook includes the timezone data on an archboot image.
HELPEOF
}