Merge "Add bootconfig to kernel cmdline when BOARD_BOOTCONFIG not empty"

This commit is contained in:
Devin Moore 2021-03-12 22:57:58 +00:00 committed by Gerrit Code Review
commit a74a5a19bf
1 changed files with 4 additions and 1 deletions

View File

@ -223,7 +223,10 @@ endif
.KATI_READONLY := $(_board_strip_readonly_list)
INTERNAL_KERNEL_CMDLINE := $(BOARD_KERNEL_CMDLINE)
INTERNAL_BOOTCONFIG := $(BOARD_BOOTCONFIG)
ifneq (,$(BOARD_BOOTCONFIG))
INTERNAL_KERNEL_CMDLINE += bootconfig
INTERNAL_BOOTCONFIG := $(BOARD_BOOTCONFIG)
endif
ifneq ($(filter %64,$(TARGET_ARCH)),)
TARGET_IS_64_BIT := true