DistroKit Mailinglist
 help / color / mirror / Atom feed
* [DistroKit] [PATCH 1/3] platforms: make DTC_OFTREE_DTS_PATH layer-aware
@ 2020-12-06 21:48 Roland Hieber
  2020-12-06 21:48 ` [DistroKit] [PATCH 2/3] rpi: barebox: make BAREBOX_EXTRA_ENV_PATH layer-aware Roland Hieber
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Roland Hieber @ 2020-12-06 21:48 UTC (permalink / raw)
  To: distrokit; +Cc: Roland Hieber

This ports PTXdist commit 4f058f4c37fa9fb1465a:

    | commit 4f058f4c37fa9fb1465a77757a35c48e5e4a9179
    | Author: Michael Olbrich <m.olbrich@pengutronix.de>
    | Date:   2018-07-31 16:12:58
    |
    |     dtc: support layers in DTC_OFTREE_DTS_PATH by default
    |
    |     PTXDIST_PLATFORMCONFIG_SUBDIR is a relative path and will be searched in
    |     all layers.
    |
    |     Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>

Link: https://git.pengutronix.de/cgit/ptxdist/commit/?id=4f058f4c37fa9fb1465a
Signed-off-by: Roland Hieber <rhi@pengutronix.de>
---
 configs/platform-mips/platformconfig | 2 +-
 configs/platform-v7a/platformconfig  | 2 +-
 configs/platform-v8a/platformconfig  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/configs/platform-mips/platformconfig b/configs/platform-mips/platformconfig
index c69fdc9feb61..258cb2a47f19 100644
--- a/configs/platform-mips/platformconfig
+++ b/configs/platform-mips/platformconfig
@@ -108,7 +108,7 @@ PTXCONF_KERNEL_MD5="4d8b8af44c9d342624c036428da09ab6"
 PTXCONF_KERNEL_LZOP=y
 PTXCONF_DTC=y
 PTXCONF_DTC_INSTALL_OFTREE=y
-PTXCONF_DTC_OFTREE_DTS_PATH="${PTXDIST_PLATFORMCONFIGDIR}/dts:${KERNEL_DIR}/arch/${GENERIC_KERNEL_ARCH}/boot/dts"
+PTXCONF_DTC_OFTREE_DTS_PATH="${PTXDIST_PLATFORMCONFIG_SUBDIR}/dts:${KERNEL_DIR}/arch/${GENERIC_KERNEL_ARCH}/boot/dts"
 PTXCONF_DTC_OFTREE_DTS="qca/ar9331_dpt_module.dts mti/malta.dts"
 PTXCONF_DTC_EXTRA_ARGS=""
 PTXCONF_HOST_DTC=y
diff --git a/configs/platform-v7a/platformconfig b/configs/platform-v7a/platformconfig
index 61c1a34b8575..1cc9fc8297f6 100644
--- a/configs/platform-v7a/platformconfig
+++ b/configs/platform-v7a/platformconfig
@@ -143,7 +143,7 @@ PTXCONF_KERNEL_CONFIG="kernelconfig"
 PTXCONF_KERNEL_EXTRA_MAKEVARS=""
 PTXCONF_DTC=y
 PTXCONF_DTC_INSTALL_OFTREE=y
-PTXCONF_DTC_OFTREE_DTS_PATH="${PTXDIST_PLATFORMCONFIGDIR}/dts:${KERNEL_DIR}/arch/${GENERIC_KERNEL_ARCH}/boot/dts"
+PTXCONF_DTC_OFTREE_DTS_PATH="${PTXDIST_PLATFORMCONFIG_SUBDIR}/dts:${KERNEL_DIR}/arch/${GENERIC_KERNEL_ARCH}/boot/dts"
 PTXCONF_DTC_OFTREE_DTS="am335x-bone.dts am335x-boneblack.dts vexpress-v2p-ca9.dts bcm2836-rpi-2-b.dts imx6q-sabrelite.dts imx6sx-udoo-neo-full.dts imx6dl-riotboard.dts imx6q-nitrogen6x.dts imx6qp-nitrogen6_max.dts bcm2837-rpi-3-b.dts stm32mp157c-dk2.dts stm32mp157c-lxa-mc1.dts at91-sama5d27_som1_ek.dts at91-sama5d27_giantboard.dts"
 PTXCONF_DTC_EXTRA_ARGS=""
 PTXCONF_HOST_DTC=y
diff --git a/configs/platform-v8a/platformconfig b/configs/platform-v8a/platformconfig
index 44b672571131..ecd33aacf3fd 100644
--- a/configs/platform-v8a/platformconfig
+++ b/configs/platform-v8a/platformconfig
@@ -141,7 +141,7 @@ PTXCONF_KERNEL_CONFIG="kernelconfig"
 PTXCONF_KERNEL_EXTRA_MAKEVARS=""
 PTXCONF_DTC=y
 PTXCONF_DTC_INSTALL_OFTREE=y
-PTXCONF_DTC_OFTREE_DTS_PATH="${PTXDIST_PLATFORMCONFIGDIR}/dts:${KERNEL_DIR}/arch/${GENERIC_KERNEL_ARCH}/boot/dts"
+PTXCONF_DTC_OFTREE_DTS_PATH="${PTXDIST_PLATFORMCONFIG_SUBDIR}/dts:${KERNEL_DIR}/arch/${GENERIC_KERNEL_ARCH}/boot/dts"
 PTXCONF_DTC_OFTREE_DTS="armada-3720-community.dts freescale/imx8mm-evk.dts freescale/imx8mp-evk.dts freescale/imx8mq-evk.dts"
 PTXCONF_DTC_EXTRA_ARGS=""
 PTXCONF_HOST_DTC=y
-- 
2.29.2


_______________________________________________
DistroKit mailing list
DistroKit@pengutronix.de

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2021-02-01 17:49 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-06 21:48 [DistroKit] [PATCH 1/3] platforms: make DTC_OFTREE_DTS_PATH layer-aware Roland Hieber
2020-12-06 21:48 ` [DistroKit] [PATCH 2/3] rpi: barebox: make BAREBOX_EXTRA_ENV_PATH layer-aware Roland Hieber
2021-02-01 17:48   ` Robert Schwebel
2020-12-06 21:48 ` [DistroKit] [PATCH 3/3] rpi: image-boot-vfat: remove unused variables Roland Hieber
2021-02-01 17:49   ` Robert Schwebel
2020-12-07  7:47 ` [DistroKit] [PATCH 1/3] platforms: make DTC_OFTREE_DTS_PATH layer-aware Alexander Dahl
2021-01-15 12:33 ` Roland Hieber
2021-01-15 12:52   ` Michael Olbrich
2021-02-01 17:46 ` Robert Schwebel

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox