28 lines
855 B
Plaintext
28 lines
855 B
Plaintext
################################################################################
|
|
## Inheriting configs from ACK
|
|
. ${ROOT_DIR}/msm-kernel/build.config.common
|
|
. ${ROOT_DIR}/msm-kernel/build.config.aarch64
|
|
|
|
################################################################################
|
|
## Variant setup
|
|
HERMETIC_TOOLCHAIN=0
|
|
VARIANTS=(perf_defconfig debug_defconfig)
|
|
[ -z "${VARIANT}" ] && VARIANT=debug_defconfig
|
|
|
|
if [ -e "${ROOT_DIR}/msm-kernel" -a "${KERNEL_DIR}" = "common" ]; then
|
|
KERNEL_DIR="msm-kernel"
|
|
fi
|
|
|
|
ABL_SRC=bootable/bootloader/edk2
|
|
BOOT_IMAGE_HEADER_VERSION=2
|
|
BASE_ADDRESS=0x80000000
|
|
PAGE_SIZE=4096
|
|
DTB_IMG_CREATE=1
|
|
TARGET_HAS_SEPARATE_RD=1
|
|
PREFERRED_USERSPACE=owrt
|
|
[ -z "${DT_OVERLAY_SUPPORT}" ] && DT_OVERLAY_SUPPORT=0
|
|
|
|
if [ "${KERNEL_CMDLINE_CONSOLE_AUTO}" != "0" ]; then
|
|
KERNEL_CMDLINE+='loglevel=8 androidboot.fstab_suffix=rdshell'
|
|
fi
|