Commit 5182e86c authored by Anton Midyukov's avatar Anton Midyukov

efi: Fix space in THE_PACKAGES on aarch64

A space in the THE_PACKAGES list makes it impossible to install the system.
parent 43645296
......@@ -13,7 +13,6 @@ use/efi:
@$(call try,EFI_BOOTLOADER,grub-efi) # default one
@$(call xport,EFI_BOOTLOADER)
@$(call add,THE_LISTS,$(EFI_LISTS))
@$(call add,THE_PACKAGES,$$(EFI_SHELL))
ifeq (distro,$(IMAGE_CLASS))
@$(call add,RESCUE_LISTS,$(EFI_LISTS))
@$(call add,INSTALL2_PACKAGES,dosfstools fatresize)
......@@ -21,6 +20,7 @@ ifeq (distro,$(IMAGE_CLASS))
@$(call add,EFI_BOOTARGS,$$(STAGE2_BOOTARGS))
ifeq (x86_64,$(ARCH))
@$(call add,RESCUE_PACKAGES,refind $$(EFI_SHELL) $$(EFI_BOOTLOADER))
@$(call add,THE_PACKAGES,$$(EFI_SHELL))
endif
endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment