From d302679562fcc53b3bd1aa4c5ee35432374d60d2 Mon Sep 17 00:00:00 2001 From: Miguel Bernal Marin Date: Wed, 7 Mar 2018 23:08:41 -0600 Subject: [PATCH] efi: makefile: install to acrn directory Currently the acrn EFI hypervisor file is installing directly to /usr/share. This patch adds a "acrn" directory to store in /usr/share/acrn Signed-off-by: Miguel Bernal Marin --- bsp/uefi/efi/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsp/uefi/efi/Makefile b/bsp/uefi/efi/Makefile index 5ddd5984b..ee1d3371a 100644 --- a/bsp/uefi/efi/Makefile +++ b/bsp/uefi/efi/Makefile @@ -80,7 +80,7 @@ all: $(EFIBIN) $(OBJCOPY) --add-section .hv="$(HV_OBJDIR)/$(HV_FILE).bin" --change-section-vma .hv=0x6e000 --set-section-flags .hv=alloc,data,contents,load --section-alignment 0x1000 $(EFI_OBJDIR)/boot.efi $(EFIBIN) install: $(EFIBIN) - install -D $(EFIBIN) $(DESTDIR)/usr/share/$(HV_FILE).efi + install -D $(EFIBIN) $(DESTDIR)/usr/share/acrn/$(HV_FILE).efi $(EFIBIN): $(BOOT)