mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-05 08:55:19 +02:00

This DTC_FLAGS will build the base platform dtbs with overlay support. Otherwise fdtoverlay command throws "FDT_ERR_NOTFOUND" error at the build time. Missing/broken DTBO partition support on DB845c and RB5 is the primary reason we have to apply DTB overlays at the build time. This patch will help enable currently out-of-tree/WIP (GKI) features on supported devboards, and help us start testing them in the LKFT builds. Bug: 146449535 Signed-off-by: Amit Pundir <amit.pundir@linaro.org> Change-Id: Ie1510d93532544683a1408e88473da5a83fc3a60
17 lines
711 B
Plaintext
17 lines
711 B
Plaintext
. ${ROOT_DIR}/${KERNEL_DIR}/build.config.common
|
|
. ${ROOT_DIR}/${KERNEL_DIR}/build.config.aarch64
|
|
|
|
BUILD_INITRAMFS=1
|
|
DEFCONFIG=db845c_gki_defconfig
|
|
FRAGMENT_CONFIG=${KERNEL_DIR}/arch/arm64/configs/db845c_gki.fragment
|
|
PRE_DEFCONFIG_CMDS="KCONFIG_CONFIG=${ROOT_DIR}/${KERNEL_DIR}/arch/arm64/configs/${DEFCONFIG} ${ROOT_DIR}/${KERNEL_DIR}/scripts/kconfig/merge_config.sh -m -r ${ROOT_DIR}/${KERNEL_DIR}/arch/arm64/configs/gki_defconfig ${ROOT_DIR}/${FRAGMENT_CONFIG}"
|
|
POST_DEFCONFIG_CMDS="rm ${ROOT_DIR}/${KERNEL_DIR}/arch/arm64/configs/${DEFCONFIG}"
|
|
|
|
DTC_FLAGS="${DTC_FLAGS} -@"
|
|
|
|
FILES="
|
|
arch/arm64/boot/dts/qcom/sdm845-db845c.dtb
|
|
arch/arm64/boot/dts/qcom/qrb5165-rb5.dtb
|
|
arch/arm64/boot/dts/qcom/sm8450-qrd.dtb
|
|
"
|