diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-01-07 23:46:06 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-01-09 21:23:05 +0100 |
commit | f96e4d7f348ce1b7b53763f102bbedb1ef6a1991 (patch) | |
tree | 4d6b7ffa009d67d9cad67f410d1a1c70d472c8d5 | |
parent | 2c1dc32647eb308126b0ae80a91988059d39aa7b (diff) | |
download | buildroot-f96e4d7f348ce1b7b53763f102bbedb1ef6a1991.tar.gz buildroot-f96e4d7f348ce1b7b53763f102bbedb1ef6a1991.zip |
package/tzdata: install a default localtime
Add an option to install a default localtime.
since tzdata only makes sense for (e)glibc, we don't care
that we install timezone files that uClibc can't understand.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/tzdata/Config.in | 10 | ||||
-rw-r--r-- | package/tzdata/tzdata.mk | 8 |
2 files changed, 17 insertions, 1 deletions
diff --git a/package/tzdata/Config.in b/package/tzdata/Config.in index 1be68149b5..c0ede1f55c 100644 --- a/package/tzdata/Config.in +++ b/package/tzdata/Config.in @@ -23,4 +23,14 @@ config BR2_PACKAGE_TZDATA_ZONELIST The full list is the list of files in the time zone database source, not including the build and .tab files. +config BR2_PACKAGE_TZDATA_LOCALTIME + string "default local time" + help + The time zone to install as the default local time, expressed as a + tzdata location, such as: + GMT, Europe/Paris, America/New_York, Pacific/Wallis... + + If empty, no local time will be set, and the dates will be + expressed in UTC. + endif diff --git a/package/tzdata/tzdata.mk b/package/tzdata/tzdata.mk index 1cb5b3f00f..74263e173e 100644 --- a/package/tzdata/tzdata.mk +++ b/package/tzdata/tzdata.mk @@ -39,8 +39,14 @@ define TZDATA_INSTALL_TARGET_CMDS cp -a $(@D)/_output/* $(TARGET_DIR)/usr/share/zoneinfo cd $(TARGET_DIR)/usr/share/zoneinfo; \ for zone in posix/*; do \ - ln -sfn "$${zone}" "$${zone##*/}"; \ + ln -sfn "$${zone}" "$${zone##*/}"; \ done + if [ -n "$(BR2_PACKAGE_TZDATA_LOCALTIME)" ]; then \ + cd $(TARGET_DIR)/etc; \ + ln -sf ../usr/share/zoneinfo/$(BR2_PACKAGE_TZDATA_LOCALTIME) \ + localtime; \ + echo "$(BR2_PACKAGE_TZDATA_LOCALTIME)" >timezone; \ + fi endef $(eval $(generic-package)) |