Skip to content

Commit 456709c

Browse files
jsun26intelwenlingz
authored andcommitted
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 <victor.sun@intel.com>
1 parent 3e9f2aa commit 456709c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

misc/efi-stub/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ all: $(EFIBIN)
9191
install: $(EFIBIN) install-conf
9292
install -D $(EFIBIN) $(DESTDIR)/usr/lib/acrn/$(HV_FILE).$(BOARD).$(SCENARIO).efi
9393
# this is to keep the compatible with original output files
94-
ifeq ($(BOARD), apl-nuc)
94+
ifeq ($(BOARD), nuc6cayh)
9595
ifeq ($(SCENARIO), sdc)
9696
install -D $(EFIBIN) $(DESTDIR)/usr/lib/acrn/$(HV_FILE).efi
9797
endif
@@ -101,7 +101,7 @@ install-debug: $(HV_OBJDIR)/$(HV_FILE).map $(HV_OBJDIR)/$(HV_FILE).out
101101
install -D $(HV_OBJDIR)/$(HV_FILE).out $(DESTDIR)/usr/lib/acrn/$(HV_FILE).$(BOARD).$(SCENARIO).efi.out
102102
install -D $(HV_OBJDIR)/$(HV_FILE).map $(DESTDIR)/usr/lib/acrn/$(HV_FILE).$(BOARD).$(SCENARIO).efi.map
103103
# this is to keep the compatible with original output files
104-
ifeq ($(BOARD), apl-nuc)
104+
ifeq ($(BOARD), nuc6cayh)
105105
ifeq ($(SCENARIO), sdc)
106106
install -D $(HV_OBJDIR)/$(HV_FILE).out $(DESTDIR)/usr/lib/acrn/$(HV_FILE).efi.out
107107
install -D $(HV_OBJDIR)/$(HV_FILE).map $(DESTDIR)/usr/lib/acrn/$(HV_FILE).efi.map

0 commit comments

Comments
 (0)