From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48663) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YgZkT-0004vl-PD for qemu-devel@nongnu.org; Fri, 10 Apr 2015 10:17:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YgZkS-0007Fe-MY for qemu-devel@nongnu.org; Fri, 10 Apr 2015 10:17:33 -0400 Received: from mx1.redhat.com ([209.132.183.28]:53440) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YgZkS-0007Eu-Au for qemu-devel@nongnu.org; Fri, 10 Apr 2015 10:17:32 -0400 From: Gerd Hoffmann Date: Fri, 10 Apr 2015 16:17:10 +0200 Message-Id: <1428675432-31433-6-git-send-email-kraxel@redhat.com> In-Reply-To: <1428675432-31433-1-git-send-email-kraxel@redhat.com> References: <1428675432-31433-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 5/7] ipxe: add qemu branding List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: ipxe-devel@ipxe.org, Gerd Hoffmann Apply qemu-project.org branding, so the official builds can easily be identified in the banner. Signed-off-by: Gerd Hoffmann --- roms/Makefile | 4 ++-- roms/config.ipxe.branding.h | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 roms/config.ipxe.branding.h diff --git a/roms/Makefile b/roms/Makefile index ab4532c..4a52d6b 100644 --- a/roms/Makefile +++ b/roms/Makefile @@ -115,12 +115,12 @@ efi-rom-%: build-pxe-roms build-efi-roms -ec ipxe/src/bin-x86_64-efi/$(VID)$(DID).efidrv \ -o ../pc-bios/efi-$*.rom -build-pxe-roms: ipxe/qemu-patches ipxe/src/config/local/general.h +build-pxe-roms: ipxe/qemu-patches ipxe/src/config/local/general.h ipxe/src/config/local/branding.h $(MAKE) -C ipxe/src GITVERSION="" \ CROSS_COMPILE=$(x86_64_cross_prefix) \ $(patsubst %,bin/%.rom,$(pxerom_targets)) -build-efi-roms: ipxe/qemu-patches build-pxe-roms ipxe/src/config/local/general.h +build-efi-roms: ipxe/qemu-patches build-pxe-roms ipxe/src/config/local/general.h ipxe/src/config/local/branding.h $(MAKE) -C ipxe/src GITVERSION="" \ CROSS_COMPILE=$(x86_64_cross_prefix) \ $(patsubst %,bin-i386-efi/%.efidrv,$(pxerom_targets)) \ diff --git a/roms/config.ipxe.branding.h b/roms/config.ipxe.branding.h new file mode 100644 index 0000000..324995e --- /dev/null +++ b/roms/config.ipxe.branding.h @@ -0,0 +1,2 @@ +#undef PRODUCT_NAME +#define PRODUCT_NAME "iPXE for qemu-project.org" -- 1.8.3.1