From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48203) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z57w9-0006rJ-BU for qemu-devel@nongnu.org; Wed, 17 Jun 2015 03:39:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Z57w6-0000gQ-6C for qemu-devel@nongnu.org; Wed, 17 Jun 2015 03:39:05 -0400 Received: from mx1.redhat.com ([209.132.183.28]:45343) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Z57w6-0000g6-1N for qemu-devel@nongnu.org; Wed, 17 Jun 2015 03:39:02 -0400 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id 93BF536B4F1 for ; Wed, 17 Jun 2015 07:39:01 +0000 (UTC) From: Gerd Hoffmann Date: Wed, 17 Jun 2015 09:38:54 +0200 Message-Id: <1434526735-25427-3-git-send-email-kraxel@redhat.com> In-Reply-To: <1434526735-25427-1-git-send-email-kraxel@redhat.com> References: <1434526735-25427-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PULL 2/3] tag our seabios builds List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Signed-off-by: Gerd Hoffmann --- roms/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/roms/Makefile b/roms/Makefile index c76cd5b..7b3f156 100644 --- a/roms/Makefile +++ b/roms/Makefile @@ -34,6 +34,9 @@ powerpc64_cross_prefix := $(call find-cross-prefix,powerpc64) powerpc_cross_prefix := $(call find-cross-prefix,powerpc) x86_64_cross_prefix := $(call find-cross-prefix,x86_64) +# tag our seabios builds +SEABIOS_VERSION="$(shell cd seabios; git describe --tags --long) by qemu-project.org" + # # EfiRom utility is shipped with edk2 / tianocore, in BaseTools/ # @@ -75,10 +78,12 @@ build-seabios-config-%: config.% mkdir -p seabios/builds/$* cp $< seabios/builds/$*/.config $(MAKE) -C seabios \ + VERSION=$(SEABIOS_VERSION) \ CROSS_COMPILE=$(x86_64_cross_prefix) \ KCONFIG_CONFIG=$(CURDIR)/seabios/builds/$*/.config \ OUT=$(CURDIR)/seabios/builds/$*/ oldnoconfig $(MAKE) -C seabios \ + VERSION=$(SEABIOS_VERSION) \ CROSS_COMPILE=$(x86_64_cross_prefix) \ KCONFIG_CONFIG=$(CURDIR)/seabios/builds/$*/.config \ OUT=$(CURDIR)/seabios/builds/$*/ all -- 1.8.3.1