From f857ec87d25c7841edccf99878c1d708e0b58ff4 Mon Sep 17 00:00:00 2001 From: Jose Diaz de Grenu de Pedro Date: Thu, 15 Oct 2015 17:55:31 +0200 Subject: [PATCH] meta-digi-dey: Use the timestamp from the name of the image as buildname In yocto 1.8 if the BUILDNAME is empty, it gets filled with a timestamp during the build. However the value and format of this timestamp are different from the ones used in the name of the image. This change matches the formats and values, setting the value of BUILDNAME to the timestamp used in the name of the image. Signed-off-by: Jose Diaz de Grenu de Pedro --- meta-digi-dey/conf/distro/dey.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta-digi-dey/conf/distro/dey.conf b/meta-digi-dey/conf/distro/dey.conf index 2789030d8..7b2616142 100644 --- a/meta-digi-dey/conf/distro/dey.conf +++ b/meta-digi-dey/conf/distro/dey.conf @@ -11,6 +11,9 @@ TARGET_VENDOR = "-dey" LOCALCONF_VERSION = "1" +# Name the build with the timestamp used in the name of the images +BUILDNAME = "${DATE}${TIME}" + # Override these in poky based distros POKY_DEFAULT_DISTRO_FEATURES = "largefile opengl ptest multiarch wayland" POKY_DEFAULT_EXTRA_RDEPENDS = "packagegroup-dey-core"