uboot: Exclude X86 archs

This commit is contained in:
Anton Midyukov 2020-08-21 20:45:50 +07:00
parent 73ec7f0e9a
commit 6611ef1d85

View File

@ -10,6 +10,7 @@ ifeq (,$(filter-out riscv64,$(ARCH)))
UBOOT_TTY := use/tty/S0
endif
ifneq (,$(filter-out i586 x86_64,$(ARCH)))
use/uboot: use/kernel/initrd-setup $(UBOOT_TTY)
@$(call add_feature)
@$(call add,THE_LISTS,singleboard-tools)
@ -20,3 +21,6 @@ ifeq (,$(filter-out riscv64,$(ARCH)))
@$(call add,UBOOT_BOOTARGS,earlyprintk debug no_alt_virt_keyboard)
endif
@$(call xport,UBOOT_BOOTARGS)
else
use/uboot: ; @:
endif