357bbd3d06
For perf builds (waipio_GKI.config), console should be default disabled, unelss explicitly turned on via command line. Disable MSM_GENI_CONSOLE_DEFAULT_ENABLED on waipio_GKI.config and re-enable it on waipio_consolidate.config. Change-Id: I11c70a3763710fe701c7392073aacc37ab6f7412 Signed-off-by: Elliot Berman <eberman@codeaurora.org>
28 lines
933 B
Plaintext
28 lines
933 B
Plaintext
################################################################################
|
|
## Inheriting configs from ACK
|
|
. ${ROOT_DIR}/common/build.config.common
|
|
. ${ROOT_DIR}/common/build.config.aarch64
|
|
|
|
################################################################################
|
|
## Variant setup
|
|
MSM_ARCH=waipio
|
|
VARIANTS=(consolidate gki)
|
|
[ -z "${VARIANT}" ] && VARIANT=consolidate
|
|
|
|
BOOT_IMAGE_HEADER_VERSION=3
|
|
BASE_ADDRESS=0x80000000
|
|
PAGE_SIZE=4096
|
|
BUILD_VENDOR_DLKM=1
|
|
SUPER_IMAGE_SIZE=0x10000000
|
|
TRIM_UNUSED_MODULES=1
|
|
[ -z "${DT_OVERLAY_SUPPORT}" ] && DT_OVERLAY_SUPPORT=1
|
|
|
|
if [ "${KERNEL_CMDLINE_CONSOLE_AUTO}" != "0" ]; then
|
|
KERNEL_VENDOR_CMDLINE+=' console=ttyMSM0,115200n8 earlycon=msm_geni_serial,0x0099C000 msm_geni_serial.con_enabled=1'
|
|
fi
|
|
|
|
################################################################################
|
|
## Inheriting MSM configs
|
|
. ${KERNEL_DIR}/build.config.msm.common
|
|
. ${KERNEL_DIR}/build.config.msm.gki
|