From 01bf2e2eb3ef9b8ad0f8a132f09955b6911a6908 Mon Sep 17 00:00:00 2001 From: Rasmus Villemoes Date: Mon, 25 Sep 2023 10:09:08 +0200 Subject: sandbox: rename overlay sources to .dtso Distinguish more clearly between source files meant for producing .dtb from those meant for producing .dtbo. No functional change, as we currently have rules for producing a foo.dtbo from either foo.dts or foo.dtso. Note that in the linux tree, all device tree overlay sources have been renamed to .dtso, and the .dts->.dtbo rule is gone since v6.5 (commit 81d362732bac). So this is also a step towards staying closer to linux with respect to both Kbuild and device tree sources. Signed-off-by: Rasmus Villemoes Reviewed-by: Simon Glass --- arch/sandbox/dts/overlay0.dts | 14 -------------- arch/sandbox/dts/overlay0.dtso | 14 ++++++++++++++ arch/sandbox/dts/overlay1.dts | 14 -------------- arch/sandbox/dts/overlay1.dtso | 14 ++++++++++++++ 4 files changed, 28 insertions(+), 28 deletions(-) delete mode 100644 arch/sandbox/dts/overlay0.dts create mode 100644 arch/sandbox/dts/overlay0.dtso delete mode 100644 arch/sandbox/dts/overlay1.dts create mode 100644 arch/sandbox/dts/overlay1.dtso diff --git a/arch/sandbox/dts/overlay0.dts b/arch/sandbox/dts/overlay0.dts deleted file mode 100644 index 9e5f38962bc..00000000000 --- a/arch/sandbox/dts/overlay0.dts +++ /dev/null @@ -1,14 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0+ -/* - * Overlay test file - */ - -/dts-v1/; -/plugin/; - -&{/buttons} { - btn3 { - gpios = <&gpio_a 5 0>; - label = "button3"; - }; -}; diff --git a/arch/sandbox/dts/overlay0.dtso b/arch/sandbox/dts/overlay0.dtso new file mode 100644 index 00000000000..9e5f38962bc --- /dev/null +++ b/arch/sandbox/dts/overlay0.dtso @@ -0,0 +1,14 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Overlay test file + */ + +/dts-v1/; +/plugin/; + +&{/buttons} { + btn3 { + gpios = <&gpio_a 5 0>; + label = "button3"; + }; +}; diff --git a/arch/sandbox/dts/overlay1.dts b/arch/sandbox/dts/overlay1.dts deleted file mode 100644 index 303e713f336..00000000000 --- a/arch/sandbox/dts/overlay1.dts +++ /dev/null @@ -1,14 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0+ -/* - * Overlay test file - */ - -/dts-v1/; -/plugin/; - -&{/buttons} { - btn4 { - gpios = <&gpio_a 5 0>; - label = "button4"; - }; -}; diff --git a/arch/sandbox/dts/overlay1.dtso b/arch/sandbox/dts/overlay1.dtso new file mode 100644 index 00000000000..303e713f336 --- /dev/null +++ b/arch/sandbox/dts/overlay1.dtso @@ -0,0 +1,14 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Overlay test file + */ + +/dts-v1/; +/plugin/; + +&{/buttons} { + btn4 { + gpios = <&gpio_a 5 0>; + label = "button4"; + }; +}; -- cgit v1.3.1