From b808ca54ec676175c3542d5f155a4a9f42c7f886 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Wieczorek?= Date: Mon, 23 Jun 2025 09:46:46 +0200 Subject: [PATCH] config: trees: Split broonie's trees into separate files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Directory "config/trees/" is supposed to store single file per specific kernel tree. Even though broonie's trees are maintained by the same person, they should be split into separate entries. This change will simplify migration to in-tree Maestro config files. Signed-off-by: Paweł Wieczorek --- config/trees/broonie-misc.yaml | 12 +++++++ config/trees/broonie-regmap.yaml | 17 ++++++++++ config/trees/broonie-regulator.yaml | 17 ++++++++++ config/trees/broonie-sound.yaml | 17 ++++++++++ config/trees/broonie-spi.yaml | 17 ++++++++++ config/trees/broonie.yaml | 52 ----------------------------- 6 files changed, 80 insertions(+), 52 deletions(-) create mode 100644 config/trees/broonie-misc.yaml create mode 100644 config/trees/broonie-regmap.yaml create mode 100644 config/trees/broonie-regulator.yaml create mode 100644 config/trees/broonie-sound.yaml create mode 100644 config/trees/broonie-spi.yaml delete mode 100644 config/trees/broonie.yaml diff --git a/config/trees/broonie-misc.yaml b/config/trees/broonie-misc.yaml new file mode 100644 index 000000000..53098497d --- /dev/null +++ b/config/trees/broonie-misc.yaml @@ -0,0 +1,12 @@ +_anchors: + broonie: &broonie + architectures: + - x86_64 + - arm64 + - arm + +build_configs: + broonie-misc: + <<: *broonie + tree: broonie-misc + branch: 'for-kernelci' diff --git a/config/trees/broonie-regmap.yaml b/config/trees/broonie-regmap.yaml new file mode 100644 index 000000000..abdb3f059 --- /dev/null +++ b/config/trees/broonie-regmap.yaml @@ -0,0 +1,17 @@ +_anchors: + broonie: &broonie + architectures: + - x86_64 + - arm64 + - arm + +build_configs: + broonie-regmap: + <<: *broonie + tree: broonie-regmap + branch: 'for-next' + + broonie-regmap-fixes: + <<: *broonie + tree: broonie-regmap + branch: 'for-linus' diff --git a/config/trees/broonie-regulator.yaml b/config/trees/broonie-regulator.yaml new file mode 100644 index 000000000..19b560952 --- /dev/null +++ b/config/trees/broonie-regulator.yaml @@ -0,0 +1,17 @@ +_anchors: + broonie: &broonie + architectures: + - x86_64 + - arm64 + - arm + +build_configs: + broonie-regulator: + <<: *broonie + tree: broonie-regulator + branch: 'for-next' + + broonie-regulator-fixes: + <<: *broonie + tree: broonie-regulator + branch: 'for-linus' diff --git a/config/trees/broonie-sound.yaml b/config/trees/broonie-sound.yaml new file mode 100644 index 000000000..986a4178a --- /dev/null +++ b/config/trees/broonie-sound.yaml @@ -0,0 +1,17 @@ +_anchors: + broonie: &broonie + architectures: + - x86_64 + - arm64 + - arm + +build_configs: + broonie-sound: + <<: *broonie + tree: broonie-sound + branch: 'for-next' + + broonie-sound-fixes: + <<: *broonie + tree: broonie-sound + branch: 'for-linus' diff --git a/config/trees/broonie-spi.yaml b/config/trees/broonie-spi.yaml new file mode 100644 index 000000000..7d551a101 --- /dev/null +++ b/config/trees/broonie-spi.yaml @@ -0,0 +1,17 @@ +_anchors: + broonie: &broonie + architectures: + - x86_64 + - arm64 + - arm + +build_configs: + broonie-spi: + <<: *broonie + tree: broonie-spi + branch: 'for-next' + + broonie-spi-fixes: + <<: *broonie + tree: broonie-spi + branch: 'for-linus' diff --git a/config/trees/broonie.yaml b/config/trees/broonie.yaml deleted file mode 100644 index 6d9e6c3af..000000000 --- a/config/trees/broonie.yaml +++ /dev/null @@ -1,52 +0,0 @@ -_anchors: - broonie: &broonie - architectures: - - x86_64 - - arm64 - - arm - -build_configs: - broonie-misc: - <<: *broonie - tree: broonie-misc - branch: 'for-kernelci' - - broonie-regmap: - <<: *broonie - tree: broonie-regmap - branch: 'for-next' - - broonie-regmap-fixes: - <<: *broonie - tree: broonie-regmap - branch: 'for-linus' - - broonie-regulator: - <<: *broonie - tree: broonie-regulator - branch: 'for-next' - - broonie-regulator-fixes: - <<: *broonie - tree: broonie-regulator - branch: 'for-linus' - - broonie-sound: - <<: *broonie - tree: broonie-sound - branch: 'for-next' - - broonie-sound-fixes: - <<: *broonie - tree: broonie-sound - branch: 'for-linus' - - broonie-spi: - <<: *broonie - tree: broonie-spi - branch: 'for-next' - - broonie-spi-fixes: - <<: *broonie - tree: broonie-spi - branch: 'for-linus'