mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 0/2] Reference environment partitions by phandle
@ 2022-10-19 10:40 Sascha Hauer
  2022-10-19 10:40 ` [PATCH 1/2] ARM: imx6qdl-phytec-pfla02: Remove unused environment nodes Sascha Hauer
  2022-10-19 10:40 ` [PATCH 2/2] Treewide: Reference environment partitions by phandle Sascha Hauer
  0 siblings, 2 replies; 3+ messages in thread
From: Sascha Hauer @ 2022-10-19 10:40 UTC (permalink / raw)
  To: Barebox List

I'd like to get rid of the "partname:xxx" binding we use to describe
the partitions we use for the barebox environment. As a first step
replace the users with a phandle directly to the partition node where
possible. With this only the users are left in the tree where the
binding is really necessary, i.e. where the environment is in a
GPT or MBR partition or in a eMMC boot partition.

Sascha Hauer (2):
  ARM: imx6qdl-phytec-pfla02: Remove unused environment nodes
  Treewide: Reference environment partitions by phandle

 arch/arm/dts/am335x-phytec-phycard-som.dtsi   |  4 +--
 arch/arm/dts/am335x-phytec-phycore-som.dtsi   |  8 ++---
 arch/arm/dts/am335x-phytec-phyflex-som.dtsi   |  8 ++---
 arch/arm/dts/ep7212-clep7212.dts              |  4 +--
 arch/arm/dts/imx25-karo-tx25.dts              |  4 +--
 .../arm/dts/imx27-phytec-phycard-s-rdk-bb.dts |  4 +--
 arch/arm/dts/imx28-evk.dts                    |  4 +--
 arch/arm/dts/imx51-ccxmx51.dts                |  4 +--
 arch/arm/dts/imx51-genesi-efika-sb.dts        |  8 ++---
 arch/arm/dts/imx51-zii-rdu1.dts               |  4 +--
 arch/arm/dts/imx53-ccxmx53.dtsi               |  4 +--
 arch/arm/dts/imx53-mba53.dts                  |  4 +--
 arch/arm/dts/imx53-voipac-dmm-668.dtsi        |  4 +--
 arch/arm/dts/imx6dl-advantech-rom-7421.dts    | 12 ++++----
 arch/arm/dts/imx6dl-hummingboard.dts          |  4 +--
 arch/arm/dts/imx6q-dmo-edmqmx6.dts            | 14 +++++----
 arch/arm/dts/imx6q-h100.dts                   |  4 +--
 arch/arm/dts/imx6q-hummingboard.dts           |  4 +--
 arch/arm/dts/imx6q-hummingboard2.dts          |  4 +--
 arch/arm/dts/imx6qdl-gw54xx.dtsi              |  4 +--
 arch/arm/dts/imx6qdl-nitrogen6_max.dtsi       |  6 ++--
 arch/arm/dts/imx6qdl-nitrogen6x.dtsi          |  4 +--
 arch/arm/dts/imx6qdl-phytec-mira.dtsi         |  2 +-
 arch/arm/dts/imx6qdl-phytec-pfla02.dtsi       | 30 ++++---------------
 arch/arm/dts/imx6qdl-phytec-phycore-som.dtsi  | 14 ++++-----
 arch/arm/dts/imx6qdl-prti6q-emmc.dtsi         |  4 +--
 arch/arm/dts/imx6qdl-sabrelite.dtsi           |  4 +--
 arch/arm/dts/imx6qdl-tx6x.dtsi                |  4 +--
 arch/arm/dts/imx6qdl-zii-rdu2.dtsi            |  4 +--
 arch/arm/dts/imx6sx-sdb.dts                   |  4 +--
 arch/arm/dts/imx6ul-ccimx6ulsbcpro.dts        |  4 +--
 arch/arm/dts/imx6ul-phytec-phycore-som.dtsi   | 12 ++++----
 arch/arm/dts/imx6ul-prti6g.dts                |  4 +--
 arch/arm/dts/imx6ull-jozacp.dts               |  4 +--
 arch/arm/dts/imx8mm-evk.dts                   |  8 ++---
 arch/arm/dts/imx8mm-innocomm-wb15-evk.dts     |  8 ++---
 arch/arm/dts/imx8mn-evk.dts                   |  8 ++---
 arch/arm/dts/imx8mn-evk.dtsi                  |  8 ++---
 arch/arm/dts/imx8mp-evk.dts                   |  8 ++---
 arch/arm/dts/imx8mq-evk.dts                   |  8 ++---
 arch/arm/dts/imx8mq-mnt-reform2.dts           |  8 ++---
 arch/arm/dts/imx8mq-zii-ultra.dtsi            |  8 ++---
 arch/arm/dts/rk3188-radxarock.dts             |  6 ++--
 arch/arm/dts/rk3288-phycore-som.dts           |  8 ++---
 .../mips/dts/ar9331-dptechnics-dpt-module.dts |  4 +--
 arch/mips/dts/ar9331-okud-max9331.dts         |  4 +--
 .../dts/ar9331-openembed-som9331-board.dts    |  4 +--
 arch/mips/dts/ar9331_tl_mr3020.dts            |  4 +--
 arch/mips/dts/ar9344-tl-wdr4300-v1.7.dts      |  4 +--
 arch/mips/dts/qca4531-8devices-lima.dts       |  4 +--
 arch/mips/dts/qemu-malta.dts                  |  4 +--
 51 files changed, 150 insertions(+), 166 deletions(-)

-- 
2.30.2




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

end of thread, other threads:[~2022-10-19 10:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-19 10:40 [PATCH 0/2] Reference environment partitions by phandle Sascha Hauer
2022-10-19 10:40 ` [PATCH 1/2] ARM: imx6qdl-phytec-pfla02: Remove unused environment nodes Sascha Hauer
2022-10-19 10:40 ` [PATCH 2/2] Treewide: Reference environment partitions by phandle Sascha Hauer

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