From 0906b25ca2dac5f2a472f2d062fba4c53b661692 Mon Sep 17 00:00:00 2001 From: Victor Sun Date: Tue, 24 Sep 2019 11:06:52 +0800 Subject: [PATCH] Makefile: build default acrn.efi with nuc6cayh To be back compatible, the default acrn.efi should be built when BOARD param is nuc6cayh, because apl-nuc was overridden to nuc6cayh in acrn-hypervisor/Makefile; Tracked-On: #3602 Signed-off-by: Victor Sun --- misc/efi-stub/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/efi-stub/Makefile b/misc/efi-stub/Makefile index 858c271fa..ac8eb10e6 100644 --- a/misc/efi-stub/Makefile +++ b/misc/efi-stub/Makefile @@ -91,7 +91,7 @@ all: $(EFIBIN) install: $(EFIBIN) install-conf install -D $(EFIBIN) $(DESTDIR)/usr/lib/acrn/$(HV_FILE).$(BOARD).$(SCENARIO).efi # this is to keep the compatible with original output files -ifeq ($(BOARD), apl-nuc) +ifeq ($(BOARD), nuc6cayh) ifeq ($(SCENARIO), sdc) install -D $(EFIBIN) $(DESTDIR)/usr/lib/acrn/$(HV_FILE).efi endif @@ -101,7 +101,7 @@ install-debug: $(HV_OBJDIR)/$(HV_FILE).map $(HV_OBJDIR)/$(HV_FILE).out install -D $(HV_OBJDIR)/$(HV_FILE).out $(DESTDIR)/usr/lib/acrn/$(HV_FILE).$(BOARD).$(SCENARIO).efi.out install -D $(HV_OBJDIR)/$(HV_FILE).map $(DESTDIR)/usr/lib/acrn/$(HV_FILE).$(BOARD).$(SCENARIO).efi.map # this is to keep the compatible with original output files -ifeq ($(BOARD), apl-nuc) +ifeq ($(BOARD), nuc6cayh) ifeq ($(SCENARIO), sdc) install -D $(HV_OBJDIR)/$(HV_FILE).out $(DESTDIR)/usr/lib/acrn/$(HV_FILE).efi.out install -D $(HV_OBJDIR)/$(HV_FILE).map $(DESTDIR)/usr/lib/acrn/$(HV_FILE).efi.map