mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-06-09 04:13:52 +00:00
99cf543ee3
Added KERNEL_DTB_OVERLAY_SUPPORT to common ti-soc include. This fixes the issue where the dtbs are build without symbols causing issue with overlays. Please note this increases the size of the dtb for all platform derived from ti-soc. So for custom boards disable it from local.conf to reduce size. Signed-off-by: Yogesh Siraswar <yogeshs@ti.com>
10 lines
249 B
PHP
10 lines
249 B
PHP
# Add DTC FLAGS -@ when KERNEL_DTB_OVERLAY_SUPPORT is enabled
|
|
|
|
def get_extra_dtc_args(d):
|
|
if d.getVar('KERNEL_DTB_OVERLAY_SUPPORT') == "1":
|
|
return "DTC_FLAGS=-@"
|
|
else:
|
|
return ""
|
|
|
|
EXTRA_DTC_ARGS += "${@get_extra_dtc_args(d)}"
|