From: Jeremy Lainé Date: Wed, 21 Jan 2009 16:04:44 +0000 (+0100) Subject: tzdata: make it possible to set default timezone X-Git-Tag: Release-2010-05/1~4200 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=378f7f0fbf124308792d6b6171178c5588135dc2;p=openembedded.git tzdata: make it possible to set default timezone * make it possible to choose the default timezone by setting the DEFAULT_TIMEZONE variable --- diff --git a/packages/tzdata/tzdata_2007k.bb b/packages/tzdata/tzdata_2007k.bb index 75c9f34e71..b1d7d39e55 100644 --- a/packages/tzdata/tzdata_2007k.bb +++ b/packages/tzdata/tzdata_2007k.bb @@ -3,7 +3,9 @@ SECTION = "base" PRIORITY = "optional" DEPENDS = "tzcode-native" -PR = "r3.01" +PR = "r4" + +DEFAULT_TIMEZONE ?= "Europe/London" RCONFLICTS= "timezones timezone-africa timezone-america timezone-antarctica \ timezone-arctic timezone-asia timezone-atlantic \ @@ -38,8 +40,8 @@ do_install () { # Install a sane default for timezones install -d ${D}${sysconfdir} - echo "Europe/London" > ${D}${sysconfdir}/timezone - cp -pPR ${S}/usr/share/zoneinfo/Europe/London ${D}${sysconfdir}/localtime + echo ${DEFAULT_TIMEZONE} > ${D}${sysconfdir}/timezone + cp -pPR ${S}/usr/share/zoneinfo/${DEFAULT_TIMEZONE} ${D}${sysconfdir}/localtime } # Packages primarily organized by directory with a major city