dccf8e2a9b
Generate super.img containing vendor_dlkm partition in order to generate a set of physically flashable images. Change-Id: If55414b2d4e61ec2baecd93211eb27e529d69a3e Signed-off-by: Elliot Berman <eberman@codeaurora.org>
28 lines
903 B
Plaintext
28 lines
903 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'
|
|
fi
|
|
|
|
################################################################################
|
|
## Inheriting MSM configs
|
|
. ${KERNEL_DIR}/build.config.msm.common
|
|
. ${KERNEL_DIR}/build.config.msm.gki
|