Skip to content

Commit 5ca26d3

Browse files
committed
Modify KBL-NUC/SDC for default build
remove acrn.efi and modify KBL-NUC/SDC for default build Tracked-On: #3953 Signed-off-by: wenlingz <wenling.zhang@intel.com>
1 parent c94b1fc commit 5ca26d3

File tree

2 files changed

+4
-15
lines changed

2 files changed

+4
-15
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# global helper variables
33
T := $(CURDIR)
44

5-
BOARD ?= apl-nuc
5+
BOARD ?= kbl-nuc-i7
66

77
ifneq (,$(filter $(BOARD),apl-mrb))
88
FIRMWARE ?= sbl
@@ -131,7 +131,7 @@ apl-mrb-sbl-sdc:
131131
apl-up2-sbl-sdc:
132132
$(call build_acrn,sbl,apl-up2,CONFIG_SDC,sdc)
133133
kbl-nuc-i7-uefi-industry:
134-
$(call build_acrn,uefi,kbl-nuc-i7,CONFIG_INDUSTRY,industry)
134+
$(call build_acrn,uefi,nuc7i7dnb,CONFIG_INDUSTRY,industry)
135135
apl-up2-uefi-hybrid:
136136
$(call build_acrn,uefi,apl-up2,CONFIG_HYBRID,hybrid)
137137
@@ -145,7 +145,7 @@ apl-mrb-sbl-sdc-install:
145145
apl-up2-sbl-sdc-install:
146146
$(call install_acrn,sbl,apl-up2,sdc)
147147
kbl-nuc-i7-uefi-industry-install:
148-
$(call install_acrn,uefi,kbl-nuc-i7,industry)
148+
$(call install_acrn,uefi,nuc7i7dnb,industry)
149149
apl-up2-uefi-hybrid-install:
150150
$(call install_acrn,uefi,apl-up2,hybrid)
151151
@@ -159,7 +159,7 @@ apl-mrb-sbl-sdc-install-debug:
159159
apl-up2-sbl-sdc-install-debug:
160160
$(call install_acrn_debug,sbl,apl-up2,sdc)
161161
kbl-nuc-i7-uefi-industry-install-debug:
162-
$(call install_acrn_debug,uefi,kbl-nuc-i7,industry)
162+
$(call install_acrn_debug,uefi,nuc7i7dnb,industry)
163163
apl-up2-uefi-hybrid-install-debug:
164164
$(call install_acrn_debug,uefi,apl-up2,hybrid)
165165

misc/efi-stub/Makefile

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -91,22 +91,11 @@ 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), nuc6cayh)
95-
ifeq ($(SCENARIO), sdc)
96-
install -D $(EFIBIN) $(DESTDIR)/usr/lib/acrn/$(HV_FILE).efi
97-
endif
98-
endif
9994

10095
install-debug: $(HV_OBJDIR)/$(HV_FILE).map $(HV_OBJDIR)/$(HV_FILE).out
10196
install -D $(HV_OBJDIR)/$(HV_FILE).out $(DESTDIR)/usr/lib/acrn/$(HV_FILE).$(BOARD).$(SCENARIO).efi.out
10297
install -D $(HV_OBJDIR)/$(HV_FILE).map $(DESTDIR)/usr/lib/acrn/$(HV_FILE).$(BOARD).$(SCENARIO).efi.map
10398
# this is to keep the compatible with original output files
104-
ifeq ($(BOARD), nuc6cayh)
105-
ifeq ($(SCENARIO), sdc)
106-
install -D $(HV_OBJDIR)/$(HV_FILE).out $(DESTDIR)/usr/lib/acrn/$(HV_FILE).efi.out
107-
install -D $(HV_OBJDIR)/$(HV_FILE).map $(DESTDIR)/usr/lib/acrn/$(HV_FILE).efi.map
108-
endif
109-
endif
11099

111100
$(EFIBIN): $(BOOT)
112101

0 commit comments

Comments
 (0)