mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
Merge from bittboy/buildroot@db180c0
This commit is contained in:
4
package/tz/Config.in
Normal file
4
package/tz/Config.in
Normal file
@@ -0,0 +1,4 @@
|
||||
config BR2_PACKAGE_TZ
|
||||
bool
|
||||
help
|
||||
Timezone info for uClibc.
|
||||
36
package/tz/tz.mk
Normal file
36
package/tz/tz.mk
Normal file
@@ -0,0 +1,36 @@
|
||||
################################################################################
|
||||
#
|
||||
# tz
|
||||
#
|
||||
################################################################################
|
||||
|
||||
TZ_DEPENDENCIES = host-tzdata host-tzdump
|
||||
TZ_LICENSE = Public domain
|
||||
|
||||
TZ_LOCALTIME = $(call qstrip,$(BR2_TARGET_LOCALTIME))
|
||||
|
||||
define TZ_BUILD_CMDS
|
||||
(cd $(HOST_DIR)/share/zoneinfo/posix/; \
|
||||
for i in $$(find . -type f); do \
|
||||
mkdir -p $(@D)/output/$$(dirname $$i); \
|
||||
$(TZDUMP) -p . -q $${i#./} | sed '1d' > $(@D)/output/$$i; \
|
||||
done \
|
||||
)
|
||||
endef
|
||||
|
||||
define TZ_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -D -m 0644 $(HOST_DIR)/share/zoneinfo/zone.tab \
|
||||
$(TARGET_DIR)/usr/share/zoneinfo/zone.tab
|
||||
$(INSTALL) -D -m 0644 $(HOST_DIR)/share/zoneinfo/iso3166.tab \
|
||||
$(TARGET_DIR)/usr/share/zoneinfo/iso3166.tab
|
||||
mkdir -p $(TARGET_DIR)/usr/share/zoneinfo/uclibc
|
||||
cp -a $(@D)/output/* $(TARGET_DIR)/usr/share/zoneinfo/uclibc
|
||||
if [ ! -f $(TARGET_DIR)/usr/share/zoneinfo/uclibc/$(TZ_LOCALTIME) ]; then \
|
||||
printf "Error: '%s' is not a valid timezone, check your BR2_TARGET_LOCALTIME setting\n" \
|
||||
"$(TZ_LOCALTIME)"; \
|
||||
exit 1; \
|
||||
fi
|
||||
ln -sf ../usr/share/zoneinfo/uclibc/$(TZ_LOCALTIME) $(TARGET_DIR)/etc/TZ
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user