archboot/usr/lib/initcpio/install/archboot_tz

19 lines
419 B
Text
Raw Normal View History

#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-2.0-only
2008-10-20 22:39:25 +02:00
# Created by Tobias Powalowski <tpowa@archlinux.org>
build ()
2008-10-20 22:39:25 +02:00
{
2023-03-10 08:39:08 +01:00
map add_binary hwclock tzselect zic zdump
2023-03-09 07:28:38 +01:00
map add_full_dir /usr/share/zoneinfo /usr/share/zoneinfo-leaps
2021-09-21 11:13:49 +02:00
add_file "/usr/bin/archboot-tz.sh" "/usr/bin/tz"
2008-10-20 22:39:25 +02:00
}
help ()
{
cat<<HELPEOF
2021-10-04 11:13:50 +02:00
This hook includes the timezone data on an archboot image.
2008-10-20 22:39:25 +02:00
HELPEOF
}
# vim: set ft=sh ts=4 sw=4 et: