* [PATCH 1/7] arm: Remove more remnants of bcmcygnus
@ 2023-07-18 23:33 Tom Rini
2023-07-18 23:33 ` [PATCH 2/7] arm: Remove leftover MAINTAINERS files Tom Rini
` (7 more replies)
0 siblings, 8 replies; 23+ messages in thread
From: Tom Rini @ 2023-07-18 23:33 UTC (permalink / raw)
To: u-boot
Remove some leftover files from the bcmcygnus platform.
Signed-off-by: Tom Rini <trini@konsulko.com>
---
arch/arm/Kconfig | 15 +-----
board/broadcom/bcm_ep/Makefile | 5 --
board/broadcom/bcm_ep/board.c | 86 ----------------------------------
3 files changed, 1 insertion(+), 105 deletions(-)
delete mode 100644 board/broadcom/bcm_ep/Makefile
delete mode 100644 board/broadcom/bcm_ep/board.c
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index b3115b054c8c..3c0cf3c9ae21 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -357,7 +357,7 @@ config SYS_ARM_ARCH
choice
prompt "Select the ARM data write cache policy"
- default SYS_ARM_CACHE_WRITETHROUGH if TARGET_BCMCYGNUS || TARGET_BCMNS || RZA1
+ default SYS_ARM_CACHE_WRITETHROUGH if TARGET_BCMNS || RZA1
default SYS_ARM_CACHE_WRITEBACK
config SYS_ARM_CACHE_WRITEBACK
@@ -668,19 +668,6 @@ config TARGET_VEXPRESS_CA9X4
select CPU_V7A
select PL011_SERIAL
-config TARGET_BCMCYGNUS
- bool "Support bcmcygnus"
- select CPU_V7A
- select GPIO_EXTRA_HEADER
- select IPROC
- imply BCM_SF2_ETH
- imply BCM_SF2_ETH_GMAC
- imply CMD_HASH
- imply CRC32_VERIFY
- imply FAT_WRITE
- imply HASH_VERIFY
- imply NETDEVICES
-
config TARGET_BCMNS
bool "Support Broadcom Northstar"
select CPU_V7A
diff --git a/board/broadcom/bcm_ep/Makefile b/board/broadcom/bcm_ep/Makefile
deleted file mode 100644
index 29a3ea7eda17..000000000000
--- a/board/broadcom/bcm_ep/Makefile
+++ /dev/null
@@ -1,5 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0+
-#
-# Copyright 2014 Broadcom Corporation.
-
-obj-y += board.o
diff --git a/board/broadcom/bcm_ep/board.c b/board/broadcom/bcm_ep/board.c
deleted file mode 100644
index e91fa40e640c..000000000000
--- a/board/broadcom/bcm_ep/board.c
+++ /dev/null
@@ -1,86 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0+
-/*
- * Copyright 2014 Broadcom Corporation.
- */
-
-#include <common.h>
-#include <cpu_func.h>
-#include <init.h>
-#include <net.h>
-#include <asm/cache.h>
-#include <asm/global_data.h>
-#include <asm/io.h>
-#include <config.h>
-#include <netdev.h>
-#include <asm/system.h>
-#include <asm/iproc-common/armpll.h>
-
-DECLARE_GLOBAL_DATA_PTR;
-
-/*
- * board_init - early hardware init
- */
-int board_init(void)
-{
- /*
- * Address of boot parameters passed to kernel
- * Use default offset 0x100
- */
- gd->bd->bi_boot_params = CFG_SYS_SDRAM_BASE + 0x100;
-
- return 0;
-}
-
-/*
- * dram_init - sets u-boot's idea of sdram size
- */
-int dram_init(void)
-{
- gd->ram_size = get_ram_size((long *)CFG_SYS_SDRAM_BASE,
- CFG_SYS_SDRAM_SIZE);
- return 0;
-}
-
-int dram_init_banksize(void)
-{
- gd->bd->bi_dram[0].start = CFG_SYS_SDRAM_BASE;
- gd->bd->bi_dram[0].size = gd->ram_size;
-
- return 0;
-}
-
-int board_early_init_f(void)
-{
- uint32_t status = 0;
-
- /* Setup PLL if required */
-#if defined(CONFIG_ARMCLK)
- armpll_config(CONFIG_ARMCLK);
-#endif
-
- return status;
-}
-
-#ifdef CONFIG_ARMV7_NONSEC
-void smp_set_core_boot_addr(unsigned long addr, int corenr)
-{
-}
-
-void smp_kick_all_cpus(void)
-{
-}
-
-void smp_waitloop(unsigned previous_address)
-{
-}
-#endif
-
-#ifdef CONFIG_BCM_SF2_ETH
-int board_eth_init(struct bd_info *bis)
-{
- int rc = -1;
- printf("Registering BCM sf2 eth\n");
- rc = bcm_sf2_eth_register(bis, 0);
- return rc;
-}
-#endif
--
2.34.1
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [PATCH 2/7] arm: Remove leftover MAINTAINERS files
2023-07-18 23:33 [PATCH 1/7] arm: Remove more remnants of bcmcygnus Tom Rini
@ 2023-07-18 23:33 ` Tom Rini
2023-07-19 1:08 ` Simon Glass
2023-07-25 21:14 ` Tom Rini
2023-07-18 23:33 ` [PATCH 3/7] xes: Remove leftover code Tom Rini
` (6 subsequent siblings)
7 siblings, 2 replies; 23+ messages in thread
From: Tom Rini @ 2023-07-18 23:33 UTC (permalink / raw)
To: u-boot
These platforms have been removed, but the MAINTAINERS file was missed,
clean up.
Signed-off-by: Tom Rini <trini@konsulko.com>
---
board/birdland/bav335x/MAINTAINERS | 13 -------------
board/broadcom/bcm11130/MAINTAINERS | 6 ------
board/broadcom/bcm11130_nand/MAINTAINERS | 6 ------
board/broadcom/bcm28155_w1d/MAINTAINERS | 6 ------
4 files changed, 31 deletions(-)
delete mode 100644 board/birdland/bav335x/MAINTAINERS
delete mode 100644 board/broadcom/bcm11130/MAINTAINERS
delete mode 100644 board/broadcom/bcm11130_nand/MAINTAINERS
delete mode 100644 board/broadcom/bcm28155_w1d/MAINTAINERS
diff --git a/board/birdland/bav335x/MAINTAINERS b/board/birdland/bav335x/MAINTAINERS
deleted file mode 100644
index 45dcfcb1e6ed..000000000000
--- a/board/birdland/bav335x/MAINTAINERS
+++ /dev/null
@@ -1,13 +0,0 @@
-BAV335x BOARD
-M: Gilles Gameiro <gilles@gigadevices.com>
-S: Maintained
-F: include/configs/bav335x.h
-F: board/birdland/bav335x/Kconfig
-F: board/birdland/bav335x/Makefile
-F: board/birdland/bav335x/README
-F: board/birdland/bav335x/board.c
-F: board/birdland/bav335x/board.h
-F: board/birdland/bav335x/mux.c
-F: board/birdland/bav335x/u-boot.lds
-F: configs/birdland_bav335a_defconfig
-F: configs/birdland_bav335b_defconfig
diff --git a/board/broadcom/bcm11130/MAINTAINERS b/board/broadcom/bcm11130/MAINTAINERS
deleted file mode 100644
index 54783501e6d5..000000000000
--- a/board/broadcom/bcm11130/MAINTAINERS
+++ /dev/null
@@ -1,6 +0,0 @@
-BCM11130 BOARD
-M: Steve Rae <steve.rae@raedomain.com>
-S: Maintained
-F: board/broadcom/bcm28155_ap/
-F: include/configs/bcm_ep_board.h
-F: configs/bcm11130_defconfig
diff --git a/board/broadcom/bcm11130_nand/MAINTAINERS b/board/broadcom/bcm11130_nand/MAINTAINERS
deleted file mode 100644
index 4cf66b7e4a6a..000000000000
--- a/board/broadcom/bcm11130_nand/MAINTAINERS
+++ /dev/null
@@ -1,6 +0,0 @@
-BCM11130_NAND BOARD
-M: Steve Rae <steve.rae@raedomain.com>
-S: Maintained
-F: board/broadcom/bcm28155_ap/
-F: include/configs/bcm_ep_board.h
-F: configs/bcm11130_nand_defconfig
diff --git a/board/broadcom/bcm28155_w1d/MAINTAINERS b/board/broadcom/bcm28155_w1d/MAINTAINERS
deleted file mode 100644
index c0558e7f2554..000000000000
--- a/board/broadcom/bcm28155_w1d/MAINTAINERS
+++ /dev/null
@@ -1,6 +0,0 @@
-BCM28155_W1D BOARD
-M: Steve Rae <steve.rae@raedomain.com>
-S: Maintained
-F: board/broadcom/bcm28155_ap/
-F: include/configs/bcm28155_ap.h
-F: configs/bcm28155_w1d_defconfig
--
2.34.1
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [PATCH 3/7] xes: Remove leftover code
2023-07-18 23:33 [PATCH 1/7] arm: Remove more remnants of bcmcygnus Tom Rini
2023-07-18 23:33 ` [PATCH 2/7] arm: Remove leftover MAINTAINERS files Tom Rini
@ 2023-07-18 23:33 ` Tom Rini
2023-07-19 1:08 ` Simon Glass
2023-07-25 21:14 ` Tom Rini
2023-07-18 23:33 ` [PATCH 4/7] MAINTAINERS: Add a number of "common" directories Tom Rini
` (5 subsequent siblings)
7 siblings, 2 replies; 23+ messages in thread
From: Tom Rini @ 2023-07-18 23:33 UTC (permalink / raw)
To: u-boot
The platforms here have been removed, but the common code directory was
forgotten. Clean up.
Signed-off-by: Tom Rini <trini@konsulko.com>
---
board/xes/common/Makefile | 9 -----
board/xes/common/board.c | 67 --------------------------------
board/xes/common/fsl_8xxx_clk.c | 54 -------------------------
board/xes/common/fsl_8xxx_misc.c | 43 --------------------
board/xes/common/fsl_8xxx_misc.h | 11 ------
5 files changed, 184 deletions(-)
delete mode 100644 board/xes/common/Makefile
delete mode 100644 board/xes/common/board.c
delete mode 100644 board/xes/common/fsl_8xxx_clk.c
delete mode 100644 board/xes/common/fsl_8xxx_misc.c
delete mode 100644 board/xes/common/fsl_8xxx_misc.h
diff --git a/board/xes/common/Makefile b/board/xes/common/Makefile
deleted file mode 100644
index b00accca1be0..000000000000
--- a/board/xes/common/Makefile
+++ /dev/null
@@ -1,9 +0,0 @@
-# SPDX-License-Identifier: GPL-2.0+
-#
-# (C) Copyright 2006
-# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
-
-obj-$(CONFIG_MPC86xx) += fsl_8xxx_clk.o
-obj-$(CONFIG_ARCH_P2020) += fsl_8xxx_clk.o
-obj-$(CONFIG_MPC85xx) += fsl_8xxx_misc.o board.o
-obj-$(CONFIG_MPC86xx) += fsl_8xxx_misc.o board.o
diff --git a/board/xes/common/board.c b/board/xes/common/board.c
deleted file mode 100644
index 053b07a0b70f..000000000000
--- a/board/xes/common/board.c
+++ /dev/null
@@ -1,67 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0+
-/*
- * Copyright 2009 Extreme Engineering Solutions, Inc.
- */
-
-#include <common.h>
-#include <env.h>
-#include "fsl_8xxx_misc.h"
-#include <init.h>
-
-int checkboard(void)
-{
- char name[] = CONFIG_SYS_BOARD_NAME;
- char buf[64];
- char *s;
- int i;
-
-#ifdef CONFIG_SYS_FORM_CUSTOM
- s = "Custom";
-#elif CONFIG_SYS_FORM_6U_CPCI
- s = "6U CompactPCI";
-#elif CONFIG_SYS_FORM_ATCA_PMC
- s = "ATCA w/PMC";
-#elif CONFIG_SYS_FORM_ATCA_AMC
- s = "ATCA w/AMC";
-#elif CONFIG_SYS_FORM_VME
- s = "VME";
-#elif CONFIG_SYS_FORM_6U_VPX
- s = "6U VPX";
-#elif CONFIG_SYS_FORM_PMC
- s = "PMC";
-#elif CONFIG_SYS_FORM_PCI
- s = "PCI";
-#elif CONFIG_SYS_FORM_3U_CPCI
- s = "3U CompactPCI";
-#elif CONFIG_SYS_FORM_AMC
- s = "AdvancedMC";
-#elif CONFIG_SYS_FORM_XMC
- s = "XMC";
-#elif CONFIG_SYS_FORM_PMC_XMC
- s = "PMC/XMC";
-#elif CONFIG_SYS_FORM_PCI_EXPRESS
- s = "PCI Express";
-#elif CONFIG_SYS_FORM_3U_VPX
- s = "3U VPX";
-#else
-#error "Form factor not defined"
-#endif
-
- name[strlen(name) - 1] += get_board_derivative();
- printf("Board: X-ES %s %s SBC\n", name, s);
-
- /* Display board specific information */
- puts(" ");
- i = env_get_f("board_rev", buf, sizeof(buf));
- if (i > 0)
- printf("Rev %s, ", buf);
- i = env_get_f("serial#", buf, sizeof(buf));
- if (i > 0)
- printf("Serial# %s, ", buf);
- i = env_get_f("board_cfg", buf, sizeof(buf));
- if (i > 0)
- printf("Cfg %s", buf);
- puts("\n");
-
- return 0;
-}
diff --git a/board/xes/common/fsl_8xxx_clk.c b/board/xes/common/fsl_8xxx_clk.c
deleted file mode 100644
index c36b2afd50ed..000000000000
--- a/board/xes/common/fsl_8xxx_clk.c
+++ /dev/null
@@ -1,54 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0+
-/*
- * Copyright 2008 Extreme Engineering Solutions, Inc.
- */
-
-#include <common.h>
-#include <clock_legacy.h>
-#include <asm/io.h>
-
-/*
- * Return SYSCLK input frequency - 50 MHz or 66 MHz depending on POR config
- */
-unsigned long get_board_sys_clk(void)
-{
-#if defined(CONFIG_MPC85xx)
- volatile ccsr_gur_t *gur = (void *)(CFG_SYS_MPC85xx_GUTS_ADDR);
-#elif defined(CONFIG_MPC86xx)
- immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
- volatile ccsr_gur_t *gur = &immap->im_gur;
-#endif
-
- if (in_be32(&gur->gpporcr) & 0x10000)
- return 66666666;
- else
-#ifdef CONFIG_ARCH_P2020
- return 100000000;
-#else
- return 50000000;
-#endif
-}
-
-#ifdef CONFIG_MPC85xx
-/*
- * Return DDR input clock - synchronous with SYSCLK or 66 MHz
- * Note: 86xx doesn't support asynchronous DDR clk
- */
-unsigned long get_board_ddr_clk(void)
-{
- volatile ccsr_gur_t *gur = (void *)(CFG_SYS_MPC85xx_GUTS_ADDR);
- u32 ddr_ratio = (in_be32(&gur->porpllsr) & 0x00003e00) >> 9;
-
- if (ddr_ratio == 0x7)
- return get_board_sys_clk();
-
-#ifdef CONFIG_ARCH_P2020
- if (in_be32(&gur->gpporcr) & 0x20000)
- return 66666666;
- else
- return 100000000;
-#else
- return 66666666;
-#endif
-}
-#endif
diff --git a/board/xes/common/fsl_8xxx_misc.c b/board/xes/common/fsl_8xxx_misc.c
deleted file mode 100644
index bc7e5c5764f8..000000000000
--- a/board/xes/common/fsl_8xxx_misc.c
+++ /dev/null
@@ -1,43 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0+
-/*
- * Copyright 2008 Extreme Engineering Solutions, Inc.
- */
-
-#include <common.h>
-#include <asm/mmu.h>
-#ifdef CONFIG_PCA953X
-#include <pca953x.h>
-
-/*
- * Determine if a board's flashes are write protected
- */
-int board_flash_wp_on(void)
-{
- if (pca953x_get_val(CFG_SYS_I2C_PCA953X_ADDR0) &
- CONFIG_SYS_PCA953X_NVM_WP)
- return 1;
-
- return 0;
-}
-#endif
-
-/*
- * Return a board's derivative model number. For example:
- * return 2 for the XPedite5372 and return 1 for the XPedite5201.
- */
-uint get_board_derivative(void)
-{
-#if defined(CONFIG_MPC85xx)
- volatile ccsr_gur_t *gur = (void *)CFG_SYS_MPC85xx_GUTS_ADDR;
-#elif defined(CONFIG_MPC86xx)
- volatile immap_t *immap = (immap_t *)CFG_SYS_CCSRBAR;
- volatile ccsr_gur_t *gur = &immap->im_gur;
-#endif
-
- /*
- * The top 4 lines of the local bus address are pulled low/high and
- * can be read to determine the least significant digit of a board's
- * model number.
- */
- return gur->gpporcr >> 28;
-}
diff --git a/board/xes/common/fsl_8xxx_misc.h b/board/xes/common/fsl_8xxx_misc.h
deleted file mode 100644
index 6e4858f15c39..000000000000
--- a/board/xes/common/fsl_8xxx_misc.h
+++ /dev/null
@@ -1,11 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0+ */
-/*
- * Copyright 2008 Extreme Engineering Solutions, Inc.
- */
-
-#ifndef __FSL_8XXX_MISC_H___
-#define __FSL_8XXX_MISC_H___
-
-uint get_board_derivative(void);
-
-#endif /* __FSL_8XXX_MISC_H__ */
--
2.34.1
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [PATCH 4/7] MAINTAINERS: Add a number of "common" directories
2023-07-18 23:33 [PATCH 1/7] arm: Remove more remnants of bcmcygnus Tom Rini
2023-07-18 23:33 ` [PATCH 2/7] arm: Remove leftover MAINTAINERS files Tom Rini
2023-07-18 23:33 ` [PATCH 3/7] xes: Remove leftover code Tom Rini
@ 2023-07-18 23:33 ` Tom Rini
2023-07-19 1:08 ` Simon Glass
2023-07-25 21:14 ` Tom Rini
2023-07-18 23:33 ` [PATCH 5/7] MAINTAINERS: Fix path typos and similar Tom Rini
` (4 subsequent siblings)
7 siblings, 2 replies; 23+ messages in thread
From: Tom Rini @ 2023-07-18 23:33 UTC (permalink / raw)
To: u-boot
A number of platforms have "common" directories that are in turn not
listed by the board MAINTAINERS file. Add these directories in many
cases.
Signed-off-by: Tom Rini <trini@konsulko.com>
---
An alternative in some cases may be to have a
board/$(VENDOR)/MAINTAINERS file instead and rework the listings that
way.
---
MAINTAINERS | 1 +
board/BuR/brppt1/MAINTAINERS | 1 +
board/BuR/brppt2/MAINTAINERS | 1 +
board/BuR/brsmarc1/MAINTAINERS | 1 +
board/BuR/brxre1/MAINTAINERS | 1 +
board/LaCie/net2big_v2/MAINTAINERS | 1 +
board/LaCie/netspace_v2/MAINTAINERS | 1 +
board/Synology/ds109/MAINTAINERS | 1 +
board/Synology/ds116/MAINTAINERS | 1 +
board/Synology/ds414/MAINTAINERS | 1 +
board/avionic-design/medcom-wide/MAINTAINERS | 1 +
board/avionic-design/plutux/MAINTAINERS | 1 +
board/avionic-design/tec-ng/MAINTAINERS | 1 +
board/avionic-design/tec/MAINTAINERS | 1 +
board/emulation/qemu-arm/MAINTAINERS | 1 +
board/emulation/qemu-ppce500/MAINTAINERS | 1 +
board/emulation/qemu-riscv/MAINTAINERS | 1 +
board/emulation/qemu-x86/MAINTAINERS | 2 ++
board/engicam/imx6q/MAINTAINERS | 1 +
board/engicam/imx6ul/MAINTAINERS | 1 +
board/engicam/imx8mm/MAINTAINERS | 1 +
board/engicam/imx8mp/MAINTAINERS | 1 +
board/engicam/px30_core/MAINTAINERS | 1 +
board/engicam/stm32mp1/MAINTAINERS | 1 +
board/gdsys/a38x/MAINTAINERS | 1 +
board/gdsys/mpc8308/MAINTAINERS | 1 +
board/keymile/km83xx/MAINTAINERS | 2 ++
board/keymile/kmcent2/MAINTAINERS | 2 ++
board/keymile/pg-wcom-ls102xa/MAINTAINERS | 2 ++
board/keymile/secu1/MAINTAINERS | 2 ++
board/toradex/apalis-imx8/MAINTAINERS | 1 +
board/toradex/apalis-tk1/MAINTAINERS | 1 +
board/toradex/apalis_imx6/MAINTAINERS | 1 +
board/toradex/apalis_t30/MAINTAINERS | 1 +
board/toradex/colibri-imx6ull/MAINTAINERS | 1 +
board/toradex/colibri-imx8x/MAINTAINERS | 1 +
board/toradex/colibri_imx6/MAINTAINERS | 1 +
board/toradex/colibri_imx7/MAINTAINERS | 1 +
board/toradex/colibri_t20/MAINTAINERS | 1 +
board/toradex/colibri_t30/MAINTAINERS | 1 +
board/toradex/colibri_vf/MAINTAINERS | 1 +
board/toradex/verdin-imx8mm/MAINTAINERS | 1 +
board/toradex/verdin-imx8mp/MAINTAINERS | 1 +
43 files changed, 48 insertions(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index 697190558efe..89e373813981 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -282,6 +282,7 @@ F: arch/arm/include/asm/arch-mx*/
F: arch/arm/include/asm/arch-vf610/
F: arch/arm/include/asm/mach-imx/
F: board/freescale/*mx*/
+F: board/freescale/common/
F: drivers/serial/serial_mxc.c
ARM HISILICON
diff --git a/board/BuR/brppt1/MAINTAINERS b/board/BuR/brppt1/MAINTAINERS
index 6b45508f0f08..a974a97c1572 100644
--- a/board/BuR/brppt1/MAINTAINERS
+++ b/board/BuR/brppt1/MAINTAINERS
@@ -2,6 +2,7 @@ BRPPT1 BOARD
M: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
S: Maintained
F: board/BuR/brppt1/
+F: board/BuR/common/
F: include/configs/brppt1.h
F: configs/brppt1_mmc_defconfig
F: configs/brppt1_nand_defconfig
diff --git a/board/BuR/brppt2/MAINTAINERS b/board/BuR/brppt2/MAINTAINERS
index fe65188f3d83..bfeaa571a82c 100644
--- a/board/BuR/brppt2/MAINTAINERS
+++ b/board/BuR/brppt2/MAINTAINERS
@@ -2,5 +2,6 @@ BUR_PPT2 BOARD
M: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
S: Maintained
F: board/BuR/brppt2/
+F: board/BuR/common/
F: include/configs/brppt2.h
F: configs/brppt2_defconfig
diff --git a/board/BuR/brsmarc1/MAINTAINERS b/board/BuR/brsmarc1/MAINTAINERS
index 8d1fe216a44a..7421f61fc43f 100644
--- a/board/BuR/brsmarc1/MAINTAINERS
+++ b/board/BuR/brsmarc1/MAINTAINERS
@@ -2,5 +2,6 @@ BRSMARC1 BOARD
M: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
S: Maintained
F: board/BuR/brsmarc1/
+F: board/BuR/common/
F: include/configs/brsmarc1.h
F: configs/brsmarc1_defconfig
diff --git a/board/BuR/brxre1/MAINTAINERS b/board/BuR/brxre1/MAINTAINERS
index 5aa36713d4ee..f826a44b6ac2 100644
--- a/board/BuR/brxre1/MAINTAINERS
+++ b/board/BuR/brxre1/MAINTAINERS
@@ -2,6 +2,7 @@ BRXRE1 BOARD
M: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
S: Maintained
F: board/BuR/brxre1/
+F: board/BuR/common/
F: include/configs/brxre1.h
F: configs/brxre1_defconfig
F: arch/arm/dts/am335x-brxre1.dts
diff --git a/board/LaCie/net2big_v2/MAINTAINERS b/board/LaCie/net2big_v2/MAINTAINERS
index 7046e1b2c5c7..66e82196794e 100644
--- a/board/LaCie/net2big_v2/MAINTAINERS
+++ b/board/LaCie/net2big_v2/MAINTAINERS
@@ -7,6 +7,7 @@ F: arch/arm/dts/kirkwood-d2net.dtsi
F: arch/arm/dts/kirkwood-net2big.dts
F: arch/arm/dts/kirkwood-net2big-u-boot.dtsi
F: arch/arm/dts/kirkwood-netxbig.dtsi
+F: board/LaCie/common/
F: board/LaCie/net2big_v2/
F: include/configs/lacie_kw.h
F: configs/d2net_v2_defconfig
diff --git a/board/LaCie/netspace_v2/MAINTAINERS b/board/LaCie/netspace_v2/MAINTAINERS
index 1cc4f7108b6b..03bc7874c164 100644
--- a/board/LaCie/netspace_v2/MAINTAINERS
+++ b/board/LaCie/netspace_v2/MAINTAINERS
@@ -12,6 +12,7 @@ F: arch/arm/dts/kirkwood-ns2max-u-boot.dtsi
F: arch/arm/dts/kirkwood-ns2mini.dts
F: arch/arm/dts/kirkwood-ns2mini-u-boot.dtsi
F: arch/arm/dts/kirkwood-ns2-u-boot.dtsi
+F: board/LaCie/common/
F: board/LaCie/netspace_v2/
F: include/configs/lacie_kw.h
F: configs/inetspace_v2_defconfig
diff --git a/board/Synology/ds109/MAINTAINERS b/board/Synology/ds109/MAINTAINERS
index 8783fdb1f209..2c50edc67deb 100644
--- a/board/Synology/ds109/MAINTAINERS
+++ b/board/Synology/ds109/MAINTAINERS
@@ -2,5 +2,6 @@ DS109 BOARD
M: Walter Schweizer <swwa@users.sourceforge.net>
S: Maintained
F: board/Synology/ds109
+F: board/Synology/common
F: configs/ds109_defconfig
F: include/configs/ds109.h
diff --git a/board/Synology/ds116/MAINTAINERS b/board/Synology/ds116/MAINTAINERS
index a5080b0d1484..8d3cc24fbef4 100644
--- a/board/Synology/ds116/MAINTAINERS
+++ b/board/Synology/ds116/MAINTAINERS
@@ -3,5 +3,6 @@ M: Tony Dinh <mibodhi@gmail.com>
S: Maintained
F: arch/arm/dts/armada-385-synology-ds116.dts
F: board/Synology/ds116/
+F: board/Synology/common
F: include/configs/ds116.h
F: configs/ds116_defconfig
diff --git a/board/Synology/ds414/MAINTAINERS b/board/Synology/ds414/MAINTAINERS
index 502cbd7758de..22b753573430 100644
--- a/board/Synology/ds414/MAINTAINERS
+++ b/board/Synology/ds414/MAINTAINERS
@@ -2,5 +2,6 @@ DS414 BOARD
M: Phil Sutter <phil@nwl.cc>
S: Maintained
F: board/Synology/ds414/
+F: board/Synology/common/
F: include/configs/ds414.h
F: configs/ds414_defconfig
diff --git a/board/avionic-design/medcom-wide/MAINTAINERS b/board/avionic-design/medcom-wide/MAINTAINERS
index 0a00fcf719e2..3d2cdeca7259 100644
--- a/board/avionic-design/medcom-wide/MAINTAINERS
+++ b/board/avionic-design/medcom-wide/MAINTAINERS
@@ -2,5 +2,6 @@ MEDCOM-WIDE BOARD
M: Alban Bedel <alban.bedel@avionic-design.de>
S: Maintained
F: board/avionic-design/medcom-wide/
+F: board/avionic-design/common/
F: include/configs/medcom-wide.h
F: configs/medcom-wide_defconfig
diff --git a/board/avionic-design/plutux/MAINTAINERS b/board/avionic-design/plutux/MAINTAINERS
index e8ef5096e569..0275680d21f2 100644
--- a/board/avionic-design/plutux/MAINTAINERS
+++ b/board/avionic-design/plutux/MAINTAINERS
@@ -2,5 +2,6 @@ PLUTUX BOARD
M: Alban Bedel <alban.bedel@avionic-design.de>
S: Maintained
F: board/avionic-design/plutux/
+F: board/avionic-design/common/
F: include/configs/plutux.h
F: configs/plutux_defconfig
diff --git a/board/avionic-design/tec-ng/MAINTAINERS b/board/avionic-design/tec-ng/MAINTAINERS
index 5cbdf8e7ebf8..645be8186aa6 100644
--- a/board/avionic-design/tec-ng/MAINTAINERS
+++ b/board/avionic-design/tec-ng/MAINTAINERS
@@ -2,5 +2,6 @@ TEC-NG BOARD
M: Alban Bedel <alban.bedel@avionic-design.de>
S: Maintained
F: board/avionic-design/tec-ng/
+F: board/avionic-design/common/
F: include/configs/tec-ng.h
F: configs/tec-ng_defconfig
diff --git a/board/avionic-design/tec/MAINTAINERS b/board/avionic-design/tec/MAINTAINERS
index 10f1aac7a637..36088e7daccf 100644
--- a/board/avionic-design/tec/MAINTAINERS
+++ b/board/avionic-design/tec/MAINTAINERS
@@ -2,5 +2,6 @@ TEC BOARD
M: Alban Bedel <alban.bedel@avionic-design.de>
S: Maintained
F: board/avionic-design/tec/
+F: board/avionic-design/common/
F: include/configs/tec.h
F: configs/tec_defconfig
diff --git a/board/emulation/qemu-arm/MAINTAINERS b/board/emulation/qemu-arm/MAINTAINERS
index e757ffc64f14..5154262f29ea 100644
--- a/board/emulation/qemu-arm/MAINTAINERS
+++ b/board/emulation/qemu-arm/MAINTAINERS
@@ -2,6 +2,7 @@ QEMU ARM 'VIRT' BOARD
M: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
S: Maintained
F: board/emulation/qemu-arm/
+F: board/emulation/common/
F: include/configs/qemu-arm.h
F: configs/qemu_arm_defconfig
F: configs/qemu_arm64_defconfig
diff --git a/board/emulation/qemu-ppce500/MAINTAINERS b/board/emulation/qemu-ppce500/MAINTAINERS
index 7317983d6a6d..348ae9085f47 100644
--- a/board/emulation/qemu-ppce500/MAINTAINERS
+++ b/board/emulation/qemu-ppce500/MAINTAINERS
@@ -3,5 +3,6 @@ M: Alexander Graf <agraf@csgraf.de>
M: Bin Meng <bmeng.cn@gmail.com>
S: Maintained
F: board/emulation/qemu-ppce500/
+F: board/emulation/common/
F: include/configs/qemu-ppce500.h
F: configs/qemu-ppce500_defconfig
diff --git a/board/emulation/qemu-riscv/MAINTAINERS b/board/emulation/qemu-riscv/MAINTAINERS
index 78969ed6bd8d..3d7453f1b43d 100644
--- a/board/emulation/qemu-riscv/MAINTAINERS
+++ b/board/emulation/qemu-riscv/MAINTAINERS
@@ -2,6 +2,7 @@ QEMU RISC-V 'VIRT' BOARD
M: Bin Meng <bmeng.cn@gmail.com>
S: Maintained
F: board/emulation/qemu-riscv/
+F: board/emulation/common/
F: include/configs/qemu-riscv.h
F: configs/qemu-riscv32_defconfig
F: configs/qemu-riscv32_smode_defconfig
diff --git a/board/emulation/qemu-x86/MAINTAINERS b/board/emulation/qemu-x86/MAINTAINERS
index 9a99d38ca052..e62585a65d7d 100644
--- a/board/emulation/qemu-x86/MAINTAINERS
+++ b/board/emulation/qemu-x86/MAINTAINERS
@@ -2,6 +2,7 @@ QEMU X86 BOARD
M: Bin Meng <bmeng.cn@gmail.com>
S: Maintained
F: board/emulation/qemu-x86/
+F: board/emulation/common/
F: include/configs/qemu-x86.h
F: configs/qemu-x86_defconfig
@@ -9,5 +10,6 @@ QEMU X86 64-bit BOARD
M: Bin Meng <bmeng.cn@gmail.com>
S: Maintained
F: board/emulation/qemu-x86/
+F: board/emulation/common/
F: include/configs/qemu-x86.h
F: configs/qemu-x86_64_defconfig
diff --git a/board/engicam/imx6q/MAINTAINERS b/board/engicam/imx6q/MAINTAINERS
index 6b46378c54ee..266da95ec02f 100644
--- a/board/engicam/imx6q/MAINTAINERS
+++ b/board/engicam/imx6q/MAINTAINERS
@@ -2,6 +2,7 @@ MX6Q_ENGICAM BOARD
M: Jagan Teki <jagan@amarulasolutions.com>
S: Maintained
F: board/engicam/imx6q
+F: board/engicam/common
F: include/configs/imx6-engicam.h
F: configs/imx6qdl_icore_mmc_defconfig
F: configs/imx6q_icore_nand_defconfig
diff --git a/board/engicam/imx6ul/MAINTAINERS b/board/engicam/imx6ul/MAINTAINERS
index 88db309aec1f..b9c6af27245c 100644
--- a/board/engicam/imx6ul/MAINTAINERS
+++ b/board/engicam/imx6ul/MAINTAINERS
@@ -2,6 +2,7 @@ MX6UL_ENGICAM BOARD
M: Jagan Teki <jagan@amarulasolutions.com>
S: Maintained
F: board/engicam/imx6ul
+F: board/engicam/common
F: include/configs/imx6-engicam.h
F: configs/imx6ul_geam_mmc_defconfig
F: configs/imx6ul_geam_nand_defconfig
diff --git a/board/engicam/imx8mm/MAINTAINERS b/board/engicam/imx8mm/MAINTAINERS
index 2e99a5995fe1..ec0ad5144819 100644
--- a/board/engicam/imx8mm/MAINTAINERS
+++ b/board/engicam/imx8mm/MAINTAINERS
@@ -9,5 +9,6 @@ M: Jagan Teki <jagan@amarulasolutions.com>
M: Matteo Lisi <matteo.lisi@engicam.com>
S: Maintained
F: board/engicam/imx8mm
+F: board/engicam/common
F: include/configs/imx8mm_icore_mx8mm.h
F: configs/imx8mm-icore-mx8mm-edimm2.2_defconfig
diff --git a/board/engicam/imx8mp/MAINTAINERS b/board/engicam/imx8mp/MAINTAINERS
index a25908a76c7b..c86f9bc9154f 100644
--- a/board/engicam/imx8mp/MAINTAINERS
+++ b/board/engicam/imx8mp/MAINTAINERS
@@ -3,5 +3,6 @@ M: Manoj Sai <abbaraju.manojsai@amarulasolutions.com>
M: Matteo Lisi <matteo.lisi@engicam.com>
S: Maintained
F: board/engicam/imx8mp
+F: board/engicam/common
F: include/configs/imx8mp_icore_mx8mp.h
F: configs/imx8mp-icore-mx8mp-edimm2.2_defconfig
diff --git a/board/engicam/px30_core/MAINTAINERS b/board/engicam/px30_core/MAINTAINERS
index 77f0c2dba59f..99c5f283fc9a 100644
--- a/board/engicam/px30_core/MAINTAINERS
+++ b/board/engicam/px30_core/MAINTAINERS
@@ -15,5 +15,6 @@ M: Jagan Teki <jagan@amarulasolutions.com>
M: Suniel Mahesh <sunil@amarulasolutions.com>
S: Maintained
F: board/engicam/px30_core
+F: board/engicam/common
F: include/configs/px30_core.h
F: configs/px30-core-edimm2.2-px30_defconfig
diff --git a/board/engicam/stm32mp1/MAINTAINERS b/board/engicam/stm32mp1/MAINTAINERS
index 405ff991851f..4ba2a7618492 100644
--- a/board/engicam/stm32mp1/MAINTAINERS
+++ b/board/engicam/stm32mp1/MAINTAINERS
@@ -23,4 +23,5 @@ M: Matteo Lisi <matteo.lisi@engicam.com>
S: Maintained
F: arch/arm/dts/stm32mp15*icore*
F: board/engicam/stm32mp1
+F: board/engicam/common
F: configs/stm32mp15-icore-stm32mp1-edimm2.2_defconfig
diff --git a/board/gdsys/a38x/MAINTAINERS b/board/gdsys/a38x/MAINTAINERS
index 6492e79541c3..bd8172065ff0 100644
--- a/board/gdsys/a38x/MAINTAINERS
+++ b/board/gdsys/a38x/MAINTAINERS
@@ -2,5 +2,6 @@ A38X BOARD
M: Mario Six <mario.six@gdsys.cc>
S: Maintained
F: board/gdsys/a38x/
+F: board/gdsys/common/
F: include/configs/controlcenterdc.h
F: configs/controlcenterdc_defconfig
diff --git a/board/gdsys/mpc8308/MAINTAINERS b/board/gdsys/mpc8308/MAINTAINERS
index 57faba4695c8..514cde521bac 100644
--- a/board/gdsys/mpc8308/MAINTAINERS
+++ b/board/gdsys/mpc8308/MAINTAINERS
@@ -2,5 +2,6 @@ MPC8308 BOARD
M: Mario Six <mario.six@gdsys.cc>
S: Maintained
F: board/gdsys/mpc8308/
+F: board/gdsys/common/
F: include/configs/gazerbeam.h
F: configs/gazerbeam_defconfig
diff --git a/board/keymile/km83xx/MAINTAINERS b/board/keymile/km83xx/MAINTAINERS
index ac1f8cbd881a..8822e5d9155c 100644
--- a/board/keymile/km83xx/MAINTAINERS
+++ b/board/keymile/km83xx/MAINTAINERS
@@ -3,6 +3,8 @@ M: Holger Brunck <holger.brunck@hitachienergy.com>
M: Heiko Schocher <hs@denx.de>
S: Maintained
F: board/keymile/km83xx/
+F: board/keymile/common/
+F: board/keymile/scripts/
F: include/configs/km8360.h
F: configs/kmcoge5ne_defconfig
F: configs/kmeter1_defconfig
diff --git a/board/keymile/kmcent2/MAINTAINERS b/board/keymile/kmcent2/MAINTAINERS
index 1426475556c8..1026188b94c7 100644
--- a/board/keymile/kmcent2/MAINTAINERS
+++ b/board/keymile/kmcent2/MAINTAINERS
@@ -2,6 +2,8 @@ KMCENT2 BOARD
M: Niel Fourie <lusus@denx.de>
S: Maintained
F: board/keymile/kmcent2/
+F: board/keymile/common/
+F: board/keymile/scripts/
F: include/configs/kmcent2.h
F: configs/kmcent2_defconfig
F: arch/powerpc/dts/kmcent2.dts
diff --git a/board/keymile/pg-wcom-ls102xa/MAINTAINERS b/board/keymile/pg-wcom-ls102xa/MAINTAINERS
index 33db2b2bea32..ed5baf269a74 100644
--- a/board/keymile/pg-wcom-ls102xa/MAINTAINERS
+++ b/board/keymile/pg-wcom-ls102xa/MAINTAINERS
@@ -3,6 +3,8 @@ M: Aleksandar Gerasimovski <aleksandar.gerasimovski@hitachienergy.com>
M: Rainer Boschung <rainer.boschung@hitachienergy.com>
S: Maintained
F: board/keymile/pg-wcom-ls102xa/
+F: board/keymile/common/
+F: board/keymile/scripts/
F: include/configs/km/pg-wcom-ls102xa.h
F: include/configs/pg-wcom-seli8.h
F: include/configs/pg-wcom-expu1.h
diff --git a/board/keymile/secu1/MAINTAINERS b/board/keymile/secu1/MAINTAINERS
index 833b3fdeabbb..8df25f8123e7 100644
--- a/board/keymile/secu1/MAINTAINERS
+++ b/board/keymile/secu1/MAINTAINERS
@@ -1,5 +1,7 @@
Hitachi Power Grids SECU1 BOARD
M: Holger Brunck <holger.brunck@hitachienergy.com>
S: Maintained
+F: board/keymile/common/
+F: board/keymile/scripts/
F: include/configs/socfpga_arria5_secu1.h
F: configs/socfpga_secu1_defconfig
diff --git a/board/toradex/apalis-imx8/MAINTAINERS b/board/toradex/apalis-imx8/MAINTAINERS
index 03b0fda0e178..198399c879ac 100644
--- a/board/toradex/apalis-imx8/MAINTAINERS
+++ b/board/toradex/apalis-imx8/MAINTAINERS
@@ -5,6 +5,7 @@ S: Maintained
F: arch/arm/dts/fsl-imx8qm-apalis.dts
F: arch/arm/dts/fsl-imx8qm-apalis-u-boot.dtsi
F: board/toradex/apalis-imx8/
+F: board/toradex/common/
F: configs/apalis-imx8_defconfig
F: doc/board/toradex/apalis-imx8.rst
F: include/configs/apalis-imx8.h
diff --git a/board/toradex/apalis-tk1/MAINTAINERS b/board/toradex/apalis-tk1/MAINTAINERS
index 3c908e119282..e2c6f63dcc7d 100644
--- a/board/toradex/apalis-tk1/MAINTAINERS
+++ b/board/toradex/apalis-tk1/MAINTAINERS
@@ -2,6 +2,7 @@ Apalis TK1
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
S: Maintained
F: board/toradex/apalis-tk1/
+F: board/toradex/common/
F: include/configs/apalis-tk1.h
F: configs/apalis-tk1_defconfig
F: arch/arm/dts/tegra124-apalis.dtb
diff --git a/board/toradex/apalis_imx6/MAINTAINERS b/board/toradex/apalis_imx6/MAINTAINERS
index 9c36ae19a8d4..0b2907bbe709 100644
--- a/board/toradex/apalis_imx6/MAINTAINERS
+++ b/board/toradex/apalis_imx6/MAINTAINERS
@@ -7,5 +7,6 @@ F: arch/arm/dts/imx6q-apalis-eval.dts
F: arch/arm/dts/imx6q-apalis-eval-u-boot.dtsi
F: arch/arm/dts/imx6qdl-apalis.dtsi
F: board/toradex/apalis_imx6/
+F: board/toradex/common/
F: configs/apalis_imx6_defconfig
F: include/configs/apalis_imx6.h
diff --git a/board/toradex/apalis_t30/MAINTAINERS b/board/toradex/apalis_t30/MAINTAINERS
index 01bc73e46d55..097db7deb08f 100644
--- a/board/toradex/apalis_t30/MAINTAINERS
+++ b/board/toradex/apalis_t30/MAINTAINERS
@@ -2,6 +2,7 @@ Apalis T30
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
S: Maintained
F: board/toradex/apalis_t30/
+F: board/toradex/common/
F: include/configs/apalis_t30.h
F: configs/apalis_t30_defconfig
F: arch/arm/dts/tegra30-apalis.dtb
diff --git a/board/toradex/colibri-imx6ull/MAINTAINERS b/board/toradex/colibri-imx6ull/MAINTAINERS
index 37c485aa6b7a..ee6fe6c13ead 100644
--- a/board/toradex/colibri-imx6ull/MAINTAINERS
+++ b/board/toradex/colibri-imx6ull/MAINTAINERS
@@ -11,6 +11,7 @@ F: arch/arm/dts/imx6ull-colibri-eval-v3.dtsi
F: arch/arm/dts/imx6ull-colibri-nonwifi.dtsi
F: arch/arm/dts/imx6ull-colibri-u-boot.dtsi
F: board/toradex/colibri-imx6ull/
+F: board/toradex/common/
F: configs/colibri-imx6ull_defconfig
F: configs/colibri-imx6ull-emmc_defconfig
F: include/configs/colibri-imx6ull.h
diff --git a/board/toradex/colibri-imx8x/MAINTAINERS b/board/toradex/colibri-imx8x/MAINTAINERS
index de62f87a560e..8c9bf1f63f43 100644
--- a/board/toradex/colibri-imx8x/MAINTAINERS
+++ b/board/toradex/colibri-imx8x/MAINTAINERS
@@ -5,6 +5,7 @@ S: Maintained
F: arch/arm/dts/fsl-imx8x-colibri.dts
F: arch/arm/dts/fsl-imx8x-colibri-u-boot.dtsi
F: board/toradex/colibri-imx8x/
+F: board/toradex/common/
F: configs/colibri-imx8x_defconfig
F: doc/board/toradex/colibri-imx8x.rst
F: include/configs/colibri-imx8x.h
diff --git a/board/toradex/colibri_imx6/MAINTAINERS b/board/toradex/colibri_imx6/MAINTAINERS
index f7a5ad59f868..25d3a06a8523 100644
--- a/board/toradex/colibri_imx6/MAINTAINERS
+++ b/board/toradex/colibri_imx6/MAINTAINERS
@@ -4,6 +4,7 @@ W: http://developer.toradex.com/software/linux/linux-software
W: https://www.toradex.com/community
S: Maintained
F: board/toradex/colibri_imx6/
+F: board/toradex/common/
F: include/configs/colibri_imx6.h
F: configs/colibri_imx6_defconfig
F: arch/arm/dts/imx6dl-colibri-eval-v3.dts
diff --git a/board/toradex/colibri_imx7/MAINTAINERS b/board/toradex/colibri_imx7/MAINTAINERS
index 513679a41c8c..e4583d5a86a2 100644
--- a/board/toradex/colibri_imx7/MAINTAINERS
+++ b/board/toradex/colibri_imx7/MAINTAINERS
@@ -10,6 +10,7 @@ F: arch/arm/boot/dts/imx7d-colibri-emmc.dtsi
F: arch/arm/boot/dts/imx7d-colibri-emmc-eval-v3.dts
F: arch/arm/boot/dts/imx7d-colibri-eval-v3.dts
F: board/toradex/colibri_imx7/
+F: board/toradex/common/
F: configs/colibri_imx7_defconfig
F: configs/colibri_imx7_emmc_defconfig
F: doc/board/toradex/colibri_imx7.rst
diff --git a/board/toradex/colibri_t20/MAINTAINERS b/board/toradex/colibri_t20/MAINTAINERS
index 77c2fc39e611..d0c5b1133313 100644
--- a/board/toradex/colibri_t20/MAINTAINERS
+++ b/board/toradex/colibri_t20/MAINTAINERS
@@ -2,6 +2,7 @@ COLIBRI_T20
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
S: Maintained
F: board/toradex/colibri_t20/
+F: board/toradex/common/
F: include/configs/colibri_t20.h
F: configs/colibri_t20_defconfig
F: arch/arm/dts/tegra20-colibri.dtb
diff --git a/board/toradex/colibri_t30/MAINTAINERS b/board/toradex/colibri_t30/MAINTAINERS
index c2d6587ed026..006a0e55f113 100644
--- a/board/toradex/colibri_t30/MAINTAINERS
+++ b/board/toradex/colibri_t30/MAINTAINERS
@@ -2,6 +2,7 @@ Colibri T30
M: Marcel Ziswiler <marcel.ziswiler@toradex.com>
S: Maintained
F: board/toradex/colibri_t30/
+F: board/toradex/common/
F: include/configs/colibri_t30.h
F: configs/colibri_t30_defconfig
F: arch/arm/dts/tegra30-colibri.dtb
diff --git a/board/toradex/colibri_vf/MAINTAINERS b/board/toradex/colibri_vf/MAINTAINERS
index f821a3334b6d..2e1a74c2db75 100644
--- a/board/toradex/colibri_vf/MAINTAINERS
+++ b/board/toradex/colibri_vf/MAINTAINERS
@@ -8,5 +8,6 @@ F: arch/arm/dts/vf-colibri-eval-v3.dtsi
F: arch/arm/dts/vf610-colibri-eval-v3-u-boot.dtsi
F: arch/arm/dts/vf610-colibri.dts
F: board/toradex/colibri_vf/
+F: board/toradex/common/
F: configs/colibri_vf_defconfig
F: include/configs/colibri_vf.h
diff --git a/board/toradex/verdin-imx8mm/MAINTAINERS b/board/toradex/verdin-imx8mm/MAINTAINERS
index b0f4329253a9..8217bbcdc0c6 100644
--- a/board/toradex/verdin-imx8mm/MAINTAINERS
+++ b/board/toradex/verdin-imx8mm/MAINTAINERS
@@ -8,6 +8,7 @@ F: arch/arm/dts/imx8mm-verdin-wifi.dtsi
F: arch/arm/dts/imx8mm-verdin-wifi-dev.dts
F: arch/arm/dts/imx8mm-verdin-wifi-dev-u-boot.dtsi
F: board/toradex/verdin-imx8mm/
+F: board/toradex/common/
F: configs/verdin-imx8mm_defconfig
F: doc/board/toradex/verdin-imx8mm.rst
F: include/configs/verdin-imx8mm.h
diff --git a/board/toradex/verdin-imx8mp/MAINTAINERS b/board/toradex/verdin-imx8mp/MAINTAINERS
index ea04a83926a3..85d6be881633 100644
--- a/board/toradex/verdin-imx8mp/MAINTAINERS
+++ b/board/toradex/verdin-imx8mp/MAINTAINERS
@@ -5,6 +5,7 @@ F: arch/arm/dts/imx8mp-verdin-wifi.dtsi
F: arch/arm/dts/imx8mp-verdin-wifi-dev.dts
F: arch/arm/dts/imx8mp-verdin-wifi-dev-u-boot.dtsi
F: board/toradex/verdin-imx8mp/
+F: board/toradex/common/
F: configs/verdin-imx8mp_defconfig
F: doc/board/toradex/verdin-imx8mp.rst
F: include/configs/verdin-imx8mp.h
--
2.34.1
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [PATCH 5/7] MAINTAINERS: Fix path typos and similar
2023-07-18 23:33 [PATCH 1/7] arm: Remove more remnants of bcmcygnus Tom Rini
` (2 preceding siblings ...)
2023-07-18 23:33 ` [PATCH 4/7] MAINTAINERS: Add a number of "common" directories Tom Rini
@ 2023-07-18 23:33 ` Tom Rini
2023-07-19 1:08 ` Simon Glass
` (2 more replies)
2023-07-18 23:33 ` [PATCH 6/7] MAINTAINERS: Deal with '+' in paths Tom Rini
` (3 subsequent siblings)
7 siblings, 3 replies; 23+ messages in thread
From: Tom Rini @ 2023-07-18 23:33 UTC (permalink / raw)
To: u-boot
We have a number of cases where the in-tree path of files and where
they presumably were when the first version of a patch were posted
differ slightly. Correct these to point at where the files are now.
Signed-off-by: Tom Rini <trini@konsulko.com>
---
board/anbernic/rgxx3_rk3566/MAINTAINERS | 4 ++--
board/broadcom/bcmns/MAINTAINERS | 4 ++--
board/bsh/imx6ulz_smm_m2/MAINTAINERS | 2 +-
board/cei/cei-tk1-som/MAINTAINERS | 2 +-
board/comtrend/ar5315u/MAINTAINERS | 2 +-
board/comtrend/ar5387un/MAINTAINERS | 2 +-
board/comtrend/ct5361/MAINTAINERS | 2 +-
board/comtrend/vr3032u/MAINTAINERS | 2 +-
board/comtrend/wap5813n/MAINTAINERS | 2 +-
board/data_modul/imx8mm_edm_sbc/MAINTAINERS | 2 +-
board/data_modul/imx8mp_edm_sbc/MAINTAINERS | 2 +-
board/google/chromebox_panther/MAINTAINERS | 2 +-
board/hardkernel/odroid_go2/MAINTAINERS | 2 +-
board/pine64/pinebook-pro-rk3399/MAINTAINERS | 2 +-
board/pine64/pinephone-pro-rk3399/MAINTAINERS | 2 +-
board/ronetix/imx7-cm/MAINTAINERS | 6 +++---
board/seeed/npi_imx6ull/MAINTAINERS | 2 +-
board/solidrun/clearfog/MAINTAINERS | 2 +-
board/vamrs/rock960_rk3399/MAINTAINERS | 2 +-
19 files changed, 23 insertions(+), 23 deletions(-)
diff --git a/board/anbernic/rgxx3_rk3566/MAINTAINERS b/board/anbernic/rgxx3_rk3566/MAINTAINERS
index 647e49d28ab3..1c0d3fe7b5bf 100644
--- a/board/anbernic/rgxx3_rk3566/MAINTAINERS
+++ b/board/anbernic/rgxx3_rk3566/MAINTAINERS
@@ -1,6 +1,6 @@
RGXX3-RK3566
M: Chris Morgan <macromorgan@hotmail.com>
S: Maintained
-F: board/anbernic/rgxx3-rk3566
-F: include/configs/anbernic-rgxx3-rk3566
+F: board/anbernic/rgxx3_rk3566
+F: include/configs/anbernic-rgxx3-rk3566.h
F: configs/anbernic-rgxx3_defconfig
diff --git a/board/broadcom/bcmns/MAINTAINERS b/board/broadcom/bcmns/MAINTAINERS
index 86b68c989cd4..63c6d8bb4aca 100644
--- a/board/broadcom/bcmns/MAINTAINERS
+++ b/board/broadcom/bcmns/MAINTAINERS
@@ -1,6 +1,6 @@
BCMNS BOARD
M: Linus Walleij <linus.walleij@linaro.org>
S: Maintained
-F: board/broadcom/bcmnsp/
+F: board/broadcom/bcmns/
F: configs/bcmns_defconfig
-F: include/configs/bcmnsp.h
+F: include/configs/bcmns.h
diff --git a/board/bsh/imx6ulz_smm_m2/MAINTAINERS b/board/bsh/imx6ulz_smm_m2/MAINTAINERS
index 8f3d79dbb840..77a033c6cbb6 100644
--- a/board/bsh/imx6ulz_smm_m2/MAINTAINERS
+++ b/board/bsh/imx6ulz_smm_m2/MAINTAINERS
@@ -1,6 +1,6 @@
MX6ULZ_SMM_M2 BOARD
M: Michael Trimarchi <michael@amarulasolutions.com>
S: Maintained
-F: board/bsh/mx6ulz_smm_m2/
+F: board/bsh/imx6ulz_smm_m2/
F: include/configs/imx6ulz_smm_m2.h
F: configs/imx6ulz_smm_m2_defconfig
diff --git a/board/cei/cei-tk1-som/MAINTAINERS b/board/cei/cei-tk1-som/MAINTAINERS
index 192e1a34a762..f1817401a5df 100644
--- a/board/cei/cei-tk1-som/MAINTAINERS
+++ b/board/cei/cei-tk1-som/MAINTAINERS
@@ -1,6 +1,6 @@
TK1-SOM BOARD
M: Peter.Chubb@data61.csiro.au
S: Maintained
-F: board/cei/tk1-som/
+F: board/cei/cei-tk1-som/
F: include/configs/cei-tk1-som.h
F: configs/cei-tk1-som_defconfig
diff --git a/board/comtrend/ar5315u/MAINTAINERS b/board/comtrend/ar5315u/MAINTAINERS
index 048073cb422b..0515e03f6065 100644
--- a/board/comtrend/ar5315u/MAINTAINERS
+++ b/board/comtrend/ar5315u/MAINTAINERS
@@ -1,6 +1,6 @@
COMTREND AR-5315U BOARD
M: Álvaro Fernández Rojas <noltari@gmail.com>
S: Maintained
-F: board/comtrend/ar-5315u/
+F: board/comtrend/ar5315u/
F: include/configs/comtrend_ar5315u.h
F: configs/comtrend_ar5315u_ram_defconfig
diff --git a/board/comtrend/ar5387un/MAINTAINERS b/board/comtrend/ar5387un/MAINTAINERS
index bcaac64db09b..48757c9fd754 100644
--- a/board/comtrend/ar5387un/MAINTAINERS
+++ b/board/comtrend/ar5387un/MAINTAINERS
@@ -1,6 +1,6 @@
COMTREND AR-5387UN BOARD
M: Álvaro Fernández Rojas <noltari@gmail.com>
S: Maintained
-F: board/comtrend/ar-5387un/
+F: board/comtrend/ar5387un/
F: include/configs/comtrend_ar5387un.h
F: configs/comtrend_ar5387un_ram_defconfig
diff --git a/board/comtrend/ct5361/MAINTAINERS b/board/comtrend/ct5361/MAINTAINERS
index aea737a0bbda..3373e5036be6 100644
--- a/board/comtrend/ct5361/MAINTAINERS
+++ b/board/comtrend/ct5361/MAINTAINERS
@@ -1,6 +1,6 @@
COMTREND CT-5361 BOARD
M: Álvaro Fernández Rojas <noltari@gmail.com>
S: Maintained
-F: board/comtrend/ct-5361/
+F: board/comtrend/ct5361/
F: include/configs/comtrend_ct5361.h
F: configs/comtrend_ct5361_ram_defconfig
diff --git a/board/comtrend/vr3032u/MAINTAINERS b/board/comtrend/vr3032u/MAINTAINERS
index 833d7da4afa7..132101f4cd0c 100644
--- a/board/comtrend/vr3032u/MAINTAINERS
+++ b/board/comtrend/vr3032u/MAINTAINERS
@@ -1,6 +1,6 @@
COMTREND VR-3032U BOARD
M: Álvaro Fernández Rojas <noltari@gmail.com>
S: Maintained
-F: board/comtrend/vr-3032u/
+F: board/comtrend/vr3032u/
F: include/configs/comtrend_vr-3032u.h
F: configs/comtrend_vr3032u_ram_defconfig
diff --git a/board/comtrend/wap5813n/MAINTAINERS b/board/comtrend/wap5813n/MAINTAINERS
index f4d99796b4db..c6764831b2bc 100644
--- a/board/comtrend/wap5813n/MAINTAINERS
+++ b/board/comtrend/wap5813n/MAINTAINERS
@@ -1,6 +1,6 @@
COMTREND WAP-5813N BOARD
M: Álvaro Fernández Rojas <noltari@gmail.com>
S: Maintained
-F: board/comtrend/wap-5813n/
+F: board/comtrend/wap5813n/
F: include/configs/comtrend_wap-5813n.h
F: configs/comtrend_wap5813n_ram_defconfig
diff --git a/board/data_modul/imx8mm_edm_sbc/MAINTAINERS b/board/data_modul/imx8mm_edm_sbc/MAINTAINERS
index 72659c081e28..36af19b78f92 100644
--- a/board/data_modul/imx8mm_edm_sbc/MAINTAINERS
+++ b/board/data_modul/imx8mm_edm_sbc/MAINTAINERS
@@ -3,6 +3,6 @@ M: Marek Vasut <marex@denx.de>
S: Maintained
F: arch/arm/dts/imx8mm-data-modul-edm-sbc.dts
F: arch/arm/dts/imx8mm-data-modul-edm-sbc-u-boot.dtsi
-F: board/data_modul/imx8mm_data_modul_edm_sbc/
+F: board/data_modul/imx8mm_edm_sbc/
F: configs/imx8mm_data_modul_edm_sbc_defconfig
F: include/configs/imx8mm_data_modul_edm_sbc.h
diff --git a/board/data_modul/imx8mp_edm_sbc/MAINTAINERS b/board/data_modul/imx8mp_edm_sbc/MAINTAINERS
index a67e1047619b..8a49c8a67d5a 100644
--- a/board/data_modul/imx8mp_edm_sbc/MAINTAINERS
+++ b/board/data_modul/imx8mp_edm_sbc/MAINTAINERS
@@ -3,6 +3,6 @@ M: Marek Vasut <marex@denx.de>
S: Maintained
F: arch/arm/dts/imx8mp-data-modul-edm-sbc.dts
F: arch/arm/dts/imx8mp-data-modul-edm-sbc-u-boot.dtsi
-F: board/data_modul/imx8mp_data_modul_edm_sbc/
+F: board/data_modul/imx8mp_edm_sbc/
F: configs/imx8mp_data_modul_edm_sbc_defconfig
F: include/configs/imx8mp_data_modul_edm_sbc.h
diff --git a/board/google/chromebox_panther/MAINTAINERS b/board/google/chromebox_panther/MAINTAINERS
index c88774bc8683..4963a895bbad 100644
--- a/board/google/chromebox_panther/MAINTAINERS
+++ b/board/google/chromebox_panther/MAINTAINERS
@@ -1,6 +1,6 @@
CHROMEBOX PANTHER BOARD
M: Simon Glass <sjg@chromium.org>
S: Maintained
-F: board/google/chromebook_panther/
+F: board/google/chromebox_panther/
F: include/configs/chromebox_panther.h
F: configs/chromebox_panther_defconfig
diff --git a/board/hardkernel/odroid_go2/MAINTAINERS b/board/hardkernel/odroid_go2/MAINTAINERS
index eab622a70b7f..4d4c6e8fef67 100644
--- a/board/hardkernel/odroid_go2/MAINTAINERS
+++ b/board/hardkernel/odroid_go2/MAINTAINERS
@@ -1,6 +1,6 @@
GO2
M: Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
S: Maintained
-F: board/odroid/go2
+F: board/hardkernel/odroid_go2/
F: include/configs/odroid_go2.h
F: configs/odroid-go2_defconfig
diff --git a/board/pine64/pinebook-pro-rk3399/MAINTAINERS b/board/pine64/pinebook-pro-rk3399/MAINTAINERS
index 227c1c0bea9f..7300ca1b1b81 100644
--- a/board/pine64/pinebook-pro-rk3399/MAINTAINERS
+++ b/board/pine64/pinebook-pro-rk3399/MAINTAINERS
@@ -1,7 +1,7 @@
PINEBOOK_PRO
M: Peter Robinson <pbrobinson@gmail.com>
S: Maintained
-F: board/pine64/rk3399-pinebook-pro/
+F: board/pine64/pinebook-pro-rk3399/
F: include/configs/rk3399-pinebook-pro.h
F: arch/arm/dts/rk3399-pinebook-pro.dts
F: arch/arm/dts/rk3399-pinebook-pro-u-boot.dtsi
diff --git a/board/pine64/pinephone-pro-rk3399/MAINTAINERS b/board/pine64/pinephone-pro-rk3399/MAINTAINERS
index c923ff1be32f..bc2dcdd8d423 100644
--- a/board/pine64/pinephone-pro-rk3399/MAINTAINERS
+++ b/board/pine64/pinephone-pro-rk3399/MAINTAINERS
@@ -1,7 +1,7 @@
PINEPHONE_PRO
M: Peter Robinson <pbrobinson@gmail.com>
S: Maintained
-F: board/pine64/rk3399-pinephone-pro/
+F: board/pine64/pinephone-pro-rk3399/
F: include/configs/rk3399-pinephone-pro.h
F: arch/arm/dts/rk3399-pinephone-pro.dts
F: arch/arm/dts/rk3399-pinephone-pro-u-boot.dtsi
diff --git a/board/ronetix/imx7-cm/MAINTAINERS b/board/ronetix/imx7-cm/MAINTAINERS
index 184c8874638a..158c2b7cd083 100644
--- a/board/ronetix/imx7-cm/MAINTAINERS
+++ b/board/ronetix/imx7-cm/MAINTAINERS
@@ -1,6 +1,6 @@
i.MX7-CM BOARD
M: Ilko Iliev <iliev@ronetix.com>
S: Maintained
-F: board/ronetix/imx7_cm/
-F: include/configs/imx7_cm.h
-F: configs/imx7_cm_defconfig
\ No newline at end of file
+F: board/ronetix/imx7-cm/
+F: include/configs/imx7-cm.h
+F: configs/imx7_cm_defconfig
diff --git a/board/seeed/npi_imx6ull/MAINTAINERS b/board/seeed/npi_imx6ull/MAINTAINERS
index c6a915c79b3c..ddf49849de1e 100644
--- a/board/seeed/npi_imx6ull/MAINTAINERS
+++ b/board/seeed/npi_imx6ull/MAINTAINERS
@@ -4,6 +4,6 @@ S: Maintained
F: arch/arm/dts/imx6ull-seeed-npi-imx6ull-dev-board.dts
F: arch/arm/dts/imx6ull-seeed-npi-imx6ull-u-boot.dtsi
F: arch/arm/dts/imx6ull-seeed-npi-imx6ull.dtsi
-F: board/seeed/npi-imx6ull/
+F: board/seeed/npi_imx6ull/
F: configs/seeed_npi_imx6ull_defconfig
F: include/configs/npi_imx6ull.h
diff --git a/board/solidrun/clearfog/MAINTAINERS b/board/solidrun/clearfog/MAINTAINERS
index 55bd1278049a..6b2d5d1146ea 100644
--- a/board/solidrun/clearfog/MAINTAINERS
+++ b/board/solidrun/clearfog/MAINTAINERS
@@ -1,7 +1,7 @@
CLEARFOG BOARD
M: Stefan Roese <sr@denx.de>
S: Maintained
-F: board/soldrun/clearfog/
+F: board/solidrun/clearfog/
F: include/configs/clearfog.h
F: configs/clearfog_defconfig
F: configs/clearfog_gt_8k_defconfig
diff --git a/board/vamrs/rock960_rk3399/MAINTAINERS b/board/vamrs/rock960_rk3399/MAINTAINERS
index 5ee525649532..8821672a3abb 100644
--- a/board/vamrs/rock960_rk3399/MAINTAINERS
+++ b/board/vamrs/rock960_rk3399/MAINTAINERS
@@ -1,7 +1,7 @@
ROCK960-RK3399
M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
S: Maintained
-F: board/rockchip/rock960_rk3399
+F: board/vamrs/rock960_rk3399/
F: include/configs/rock960_rk3399.h
F: configs/rock960-rk3399_defconfig
--
2.34.1
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [PATCH 6/7] MAINTAINERS: Deal with '+' in paths
2023-07-18 23:33 [PATCH 1/7] arm: Remove more remnants of bcmcygnus Tom Rini
` (3 preceding siblings ...)
2023-07-18 23:33 ` [PATCH 5/7] MAINTAINERS: Fix path typos and similar Tom Rini
@ 2023-07-18 23:33 ` Tom Rini
2023-07-19 1:08 ` Simon Glass
2023-07-25 21:14 ` Tom Rini
2023-07-18 23:33 ` [PATCH 7/7] MAINTAINERS: Add some missing directories or files Tom Rini
` (2 subsequent siblings)
7 siblings, 2 replies; 23+ messages in thread
From: Tom Rini @ 2023-07-18 23:33 UTC (permalink / raw)
To: u-boot
The listed paths are allowed to contain wildcards. This includes the
'+' character which we have as a literal part of the path in a few
cases. Escape the '+' here so that files are matched.
Signed-off-by: Tom Rini <trini@konsulko.com>
---
board/k+p/kp_imx53/MAINTAINERS | 3 ++-
board/k+p/kp_imx6q_tpc/MAINTAINERS | 3 ++-
board/l+g/vinco/MAINTAINERS | 2 +-
3 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/board/k+p/kp_imx53/MAINTAINERS b/board/k+p/kp_imx53/MAINTAINERS
index c105a93e7075..daf861160a41 100644
--- a/board/k+p/kp_imx53/MAINTAINERS
+++ b/board/k+p/kp_imx53/MAINTAINERS
@@ -1,6 +1,7 @@
KP_IMX53_HSC BOARD
M: Lukasz Majewski <lukma@denx.de>
S: Maintained
-F: board/k+p/kp_imx53/
+F: board/k\+p/kp_imx53/
+F: board/k\+p/bootscripts/tpcboot.cmd
F: include/configs/kp_imx53.h
F: configs/kp_imx53_defconfig
diff --git a/board/k+p/kp_imx6q_tpc/MAINTAINERS b/board/k+p/kp_imx6q_tpc/MAINTAINERS
index 6c4c8dd28e39..e54f4604c38b 100644
--- a/board/k+p/kp_imx6q_tpc/MAINTAINERS
+++ b/board/k+p/kp_imx6q_tpc/MAINTAINERS
@@ -1,6 +1,7 @@
KP_IMX6Q_TPC BOARD
M: Lukasz Majewski <lukma@denx.de>
S: Maintained
-F: board/k+p/kp_imx6q_tpc/
+F: board/k\+p/kp_imx6q_tpc/
+F: board/k\+p/bootscripts/tpcboot.cmd
F: include/configs/kp_imx6q_tpc.h
F: configs/kp_imx6q_tpc_defconfig
diff --git a/board/l+g/vinco/MAINTAINERS b/board/l+g/vinco/MAINTAINERS
index 0cd6044172a7..14b76b14d846 100644
--- a/board/l+g/vinco/MAINTAINERS
+++ b/board/l+g/vinco/MAINTAINERS
@@ -1,6 +1,6 @@
VInCo Platform
M: Gregory CLEMENT <gregory.clement@free-electrons.com>
S: Maintained
-F: board/l+g/vinco
+F: board/l\+g/vinco/
F: include/configs/vinco.h
F: configs/vinco_defconfig
--
2.34.1
^ permalink raw reply related [flat|nested] 23+ messages in thread
* [PATCH 7/7] MAINTAINERS: Add some missing directories or files
2023-07-18 23:33 [PATCH 1/7] arm: Remove more remnants of bcmcygnus Tom Rini
` (4 preceding siblings ...)
2023-07-18 23:33 ` [PATCH 6/7] MAINTAINERS: Deal with '+' in paths Tom Rini
@ 2023-07-18 23:33 ` Tom Rini
2023-07-19 1:08 ` Simon Glass
2023-07-25 21:14 ` Tom Rini
2023-07-19 1:08 ` [PATCH 1/7] arm: Remove more remnants of bcmcygnus Simon Glass
2023-07-25 21:14 ` Tom Rini
7 siblings, 2 replies; 23+ messages in thread
From: Tom Rini @ 2023-07-18 23:33 UTC (permalink / raw)
To: u-boot
In a few cases we have MAINTAINERS entries that are missing obvious
paths or files. Typically this means a board directory that did not list
itself, but in a few cases we have a Kconfig file or similar.
Signed-off-by: Tom Rini <trini@konsulko.com>
---
MAINTAINERS | 1 +
board/coreboot/coreboot/MAINTAINERS | 4 +---
board/devboards/dbm-soc1/MAINTAINERS | 1 +
board/efi/efi-x86_app/MAINTAINERS | 2 ++
board/efi/efi-x86_payload/MAINTAINERS | 1 +
board/firefly/firefly-rk3308/MAINTAINERS | 3 ++-
board/freescale/ls1043ardb/MAINTAINERS | 1 -
board/keymile/secu1/MAINTAINERS | 1 +
board/softing/vining_fpga/MAINTAINERS | 1 +
board/terasic/de0-nano-soc/MAINTAINERS | 1 +
board/terasic/de1-soc/MAINTAINERS | 1 +
board/terasic/de10-nano/MAINTAINERS | 1 +
board/terasic/de10-standard/MAINTAINERS | 1 +
board/terasic/sockit/MAINTAINERS | 1 +
14 files changed, 15 insertions(+), 5 deletions(-)
diff --git a/MAINTAINERS b/MAINTAINERS
index 89e373813981..4a24a92460c8 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -272,6 +272,7 @@ M: Fabio Estevam <festevam@gmail.com>
R: NXP i.MX U-Boot Team <uboot-imx@nxp.com>
S: Maintained
T: git https://source.denx.de/u-boot/custodians/u-boot-imx.git
+F: arch/Kconfig.nxp
F: arch/arm/cpu/arm1136/mx*/
F: arch/arm/cpu/arm926ejs/mx*/
F: arch/arm/cpu/armv7/vf610/
diff --git a/board/coreboot/coreboot/MAINTAINERS b/board/coreboot/coreboot/MAINTAINERS
index ee12d32ce7cd..f77736580006 100644
--- a/board/coreboot/coreboot/MAINTAINERS
+++ b/board/coreboot/coreboot/MAINTAINERS
@@ -1,13 +1,11 @@
COREBOOT BOARD
M: Simon Glass <sjg@chromium.org>
S: Maintained
-F: board/coreboot/coreboot/
+F: board/coreboot/
F: include/configs/coreboot.h
F: configs/coreboot_defconfig
COREBOOT64 BOARD
M: Simon Glass <sjg@chromium.org>
S: Maintained
-F: board/coreboot/coreboot/
-F: include/configs/coreboot.h
F: configs/coreboot64_defconfig
diff --git a/board/devboards/dbm-soc1/MAINTAINERS b/board/devboards/dbm-soc1/MAINTAINERS
index 625f2c889964..577eba5a281a 100644
--- a/board/devboards/dbm-soc1/MAINTAINERS
+++ b/board/devboards/dbm-soc1/MAINTAINERS
@@ -1,5 +1,6 @@
Devboards.de DBM-SoC1 BOARD
M: Marek Vasut <marex@denx.de>
S: Maintained
+F: board/devboards/dbm-soc1/
F: include/configs/socfpga_dbm_soc1.h
F: configs/socfpga_dbm_soc1_defconfig
diff --git a/board/efi/efi-x86_app/MAINTAINERS b/board/efi/efi-x86_app/MAINTAINERS
index b292811a8f08..584619c51dff 100644
--- a/board/efi/efi-x86_app/MAINTAINERS
+++ b/board/efi/efi-x86_app/MAINTAINERS
@@ -1,6 +1,7 @@
EFI-X86_APP32 BOARD
M: Simon Glass <sjg@chromium.org>
S: Maintained
+F: board/efi/Kconfig
F: board/efi/efi-x86_app/
F: include/configs/efi-x86_app.h
F: configs/efi-x86_app32_defconfig
@@ -8,6 +9,7 @@ F: configs/efi-x86_app32_defconfig
EFI-X86_APP64 BOARD
M: Simon Glass <sjg@chromium.org>
S: Maintained
+F: board/efi/Kconfig
F: board/efi/efi-x86_app/
F: include/configs/efi-x86_app.h
F: configs/efi-x86_app64_defconfig
diff --git a/board/efi/efi-x86_payload/MAINTAINERS b/board/efi/efi-x86_payload/MAINTAINERS
index abf3a1574b0f..d795d60e09e4 100644
--- a/board/efi/efi-x86_payload/MAINTAINERS
+++ b/board/efi/efi-x86_payload/MAINTAINERS
@@ -1,6 +1,7 @@
EFI-X86_PAYLOAD BOARD
M: Bin Meng <bmeng.cn@gmail.com>
S: Maintained
+F: board/efi/Kconfig
F: board/efi/efi-x86_payload/
F: include/configs/efi-x86_payload.h
F: configs/efi-x86_payload32_defconfig
diff --git a/board/firefly/firefly-rk3308/MAINTAINERS b/board/firefly/firefly-rk3308/MAINTAINERS
index 199079717e73..e584038a2033 100644
--- a/board/firefly/firefly-rk3308/MAINTAINERS
+++ b/board/firefly/firefly-rk3308/MAINTAINERS
@@ -1,5 +1,6 @@
ROC-RK3308-CC
M: Andy Yan <andy.yan@rock-chips.com>
S: Maintained
-F: board/firefly/firefly-rk3308/roc_cc_rk3308.c
+F: board/firefly/firefly-rk3308/
F: configs/roc-cc-rk3308_defconfig
+F: include/configs/firefly_rk3308.h
diff --git a/board/freescale/ls1043ardb/MAINTAINERS b/board/freescale/ls1043ardb/MAINTAINERS
index 36e7331538f8..8e14ba3608be 100644
--- a/board/freescale/ls1043ardb/MAINTAINERS
+++ b/board/freescale/ls1043ardb/MAINTAINERS
@@ -3,7 +3,6 @@ M: Mingkai Hu <mingkai.hu@nxp.com>
M: Rajesh Bhagat <rajesh.bhagat@nxp.com>
S: Maintained
F: board/freescale/ls1043ardb/
-F: board/freescale/ls1043ardb/ls1043ardb.c
F: include/configs/ls1043ardb.h
F: configs/ls1043ardb_defconfig
F: configs/ls1043ardb_nand_defconfig
diff --git a/board/keymile/secu1/MAINTAINERS b/board/keymile/secu1/MAINTAINERS
index 8df25f8123e7..e441f252aa23 100644
--- a/board/keymile/secu1/MAINTAINERS
+++ b/board/keymile/secu1/MAINTAINERS
@@ -1,6 +1,7 @@
Hitachi Power Grids SECU1 BOARD
M: Holger Brunck <holger.brunck@hitachienergy.com>
S: Maintained
+F: board/keymile/secu1/
F: board/keymile/common/
F: board/keymile/scripts/
F: include/configs/socfpga_arria5_secu1.h
diff --git a/board/softing/vining_fpga/MAINTAINERS b/board/softing/vining_fpga/MAINTAINERS
index c2002fe3cefc..ed44b09f3275 100644
--- a/board/softing/vining_fpga/MAINTAINERS
+++ b/board/softing/vining_fpga/MAINTAINERS
@@ -1,5 +1,6 @@
VINING FPGA BOARD
M: Marek Vasut <marex@denx.de>
S: Maintained
+F: board/softing/vining_fpga/
F: include/configs/socfpga_vining_fpga.h
F: configs/socfpga_vining_fpga_defconfig
diff --git a/board/terasic/de0-nano-soc/MAINTAINERS b/board/terasic/de0-nano-soc/MAINTAINERS
index 7f4cf1e7f54b..6ffa0c073827 100644
--- a/board/terasic/de0-nano-soc/MAINTAINERS
+++ b/board/terasic/de0-nano-soc/MAINTAINERS
@@ -1,5 +1,6 @@
SOCFPGA ATLAS BOARD
M: Dinh Nguyen <dinguyen@kernel.org>
S: Maintained
+F: board/terasic/de0-nano-soc/
F: include/configs/socfpga_de0_nano_soc.h
F: configs/socfpga_de0_nano_soc_defconfig
diff --git a/board/terasic/de1-soc/MAINTAINERS b/board/terasic/de1-soc/MAINTAINERS
index bd7a8d5f4ca4..1e726e936036 100644
--- a/board/terasic/de1-soc/MAINTAINERS
+++ b/board/terasic/de1-soc/MAINTAINERS
@@ -1,5 +1,6 @@
DE1-SoC BOARD
M: Anatolij Gustschin <agust@denx.de>
S: Maintained
+F: board/terasic/de1-soc/
F: include/configs/socfpga_de1_soc.h
F: configs/socfpga_de1_soc_defconfig
diff --git a/board/terasic/de10-nano/MAINTAINERS b/board/terasic/de10-nano/MAINTAINERS
index f4dd0dff3ba8..ebfd3b209d01 100644
--- a/board/terasic/de10-nano/MAINTAINERS
+++ b/board/terasic/de10-nano/MAINTAINERS
@@ -1,5 +1,6 @@
DE10-NANO BOARD
M: Dalon Westergreen <dwesterg@gmail.com>
S: Maintained
+F: board/terasic/de10-nano/
F: include/configs/socfpga_de10_nano.h
F: configs/socfpga_de10_nano_defconfig
diff --git a/board/terasic/de10-standard/MAINTAINERS b/board/terasic/de10-standard/MAINTAINERS
index 94bf1e03eeb9..49fdc7516ca4 100644
--- a/board/terasic/de10-standard/MAINTAINERS
+++ b/board/terasic/de10-standard/MAINTAINERS
@@ -1,5 +1,6 @@
DE10-STANDARD BOARD
M: Humberto Naves <hsnaves@gmail.com>
S: Maintained
+F: board/terasic/de10-standard/
F: include/configs/socfpga_de10_standard.h
F: configs/socfpga_de10_standard_defconfig
diff --git a/board/terasic/sockit/MAINTAINERS b/board/terasic/sockit/MAINTAINERS
index 792f18474ff7..e301751fbd77 100644
--- a/board/terasic/sockit/MAINTAINERS
+++ b/board/terasic/sockit/MAINTAINERS
@@ -1,5 +1,6 @@
SOCKIT BOARD
M: Marek Vasut <marex@denx.de>
S: Maintained
+F: board/terasic/sockit/
F: include/configs/socfpga_sockit.h
F: configs/socfpga_sockit_defconfig
--
2.34.1
^ permalink raw reply related [flat|nested] 23+ messages in thread
* Re: [PATCH 1/7] arm: Remove more remnants of bcmcygnus
2023-07-18 23:33 [PATCH 1/7] arm: Remove more remnants of bcmcygnus Tom Rini
` (5 preceding siblings ...)
2023-07-18 23:33 ` [PATCH 7/7] MAINTAINERS: Add some missing directories or files Tom Rini
@ 2023-07-19 1:08 ` Simon Glass
2023-07-25 21:14 ` Tom Rini
7 siblings, 0 replies; 23+ messages in thread
From: Simon Glass @ 2023-07-19 1:08 UTC (permalink / raw)
To: Tom Rini; +Cc: u-boot
On Tue, 18 Jul 2023 at 17:33, Tom Rini <trini@konsulko.com> wrote:
>
> Remove some leftover files from the bcmcygnus platform.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
> arch/arm/Kconfig | 15 +-----
> board/broadcom/bcm_ep/Makefile | 5 --
> board/broadcom/bcm_ep/board.c | 86 ----------------------------------
> 3 files changed, 1 insertion(+), 105 deletions(-)
> delete mode 100644 board/broadcom/bcm_ep/Makefile
> delete mode 100644 board/broadcom/bcm_ep/board.c
Reviewed-by: Simon Glass <sjg@chromium.org>
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH 2/7] arm: Remove leftover MAINTAINERS files
2023-07-18 23:33 ` [PATCH 2/7] arm: Remove leftover MAINTAINERS files Tom Rini
@ 2023-07-19 1:08 ` Simon Glass
2023-07-25 21:14 ` Tom Rini
1 sibling, 0 replies; 23+ messages in thread
From: Simon Glass @ 2023-07-19 1:08 UTC (permalink / raw)
To: Tom Rini; +Cc: u-boot
On Tue, 18 Jul 2023 at 17:34, Tom Rini <trini@konsulko.com> wrote:
>
> These platforms have been removed, but the MAINTAINERS file was missed,
> clean up.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
> board/birdland/bav335x/MAINTAINERS | 13 -------------
> board/broadcom/bcm11130/MAINTAINERS | 6 ------
> board/broadcom/bcm11130_nand/MAINTAINERS | 6 ------
> board/broadcom/bcm28155_w1d/MAINTAINERS | 6 ------
> 4 files changed, 31 deletions(-)
> delete mode 100644 board/birdland/bav335x/MAINTAINERS
> delete mode 100644 board/broadcom/bcm11130/MAINTAINERS
> delete mode 100644 board/broadcom/bcm11130_nand/MAINTAINERS
> delete mode 100644 board/broadcom/bcm28155_w1d/MAINTAINERS
Reviewed-by: Simon Glass <sjg@chromium.org>
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH 3/7] xes: Remove leftover code
2023-07-18 23:33 ` [PATCH 3/7] xes: Remove leftover code Tom Rini
@ 2023-07-19 1:08 ` Simon Glass
2023-07-25 21:14 ` Tom Rini
1 sibling, 0 replies; 23+ messages in thread
From: Simon Glass @ 2023-07-19 1:08 UTC (permalink / raw)
To: Tom Rini; +Cc: u-boot
On Tue, 18 Jul 2023 at 17:34, Tom Rini <trini@konsulko.com> wrote:
>
> The platforms here have been removed, but the common code directory was
> forgotten. Clean up.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
> board/xes/common/Makefile | 9 -----
> board/xes/common/board.c | 67 --------------------------------
> board/xes/common/fsl_8xxx_clk.c | 54 -------------------------
> board/xes/common/fsl_8xxx_misc.c | 43 --------------------
> board/xes/common/fsl_8xxx_misc.h | 11 ------
> 5 files changed, 184 deletions(-)
> delete mode 100644 board/xes/common/Makefile
> delete mode 100644 board/xes/common/board.c
> delete mode 100644 board/xes/common/fsl_8xxx_clk.c
> delete mode 100644 board/xes/common/fsl_8xxx_misc.c
> delete mode 100644 board/xes/common/fsl_8xxx_misc.h
Reviewed-by: Simon Glass <sjg@chromium.org>
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH 4/7] MAINTAINERS: Add a number of "common" directories
2023-07-18 23:33 ` [PATCH 4/7] MAINTAINERS: Add a number of "common" directories Tom Rini
@ 2023-07-19 1:08 ` Simon Glass
2023-07-25 21:14 ` Tom Rini
1 sibling, 0 replies; 23+ messages in thread
From: Simon Glass @ 2023-07-19 1:08 UTC (permalink / raw)
To: Tom Rini; +Cc: u-boot
On Tue, 18 Jul 2023 at 17:34, Tom Rini <trini@konsulko.com> wrote:
>
> A number of platforms have "common" directories that are in turn not
> listed by the board MAINTAINERS file. Add these directories in many
> cases.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
> An alternative in some cases may be to have a
> board/$(VENDOR)/MAINTAINERS file instead and rework the listings that
> way.
> ---
> MAINTAINERS | 1 +
> board/BuR/brppt1/MAINTAINERS | 1 +
> board/BuR/brppt2/MAINTAINERS | 1 +
> board/BuR/brsmarc1/MAINTAINERS | 1 +
> board/BuR/brxre1/MAINTAINERS | 1 +
> board/LaCie/net2big_v2/MAINTAINERS | 1 +
> board/LaCie/netspace_v2/MAINTAINERS | 1 +
> board/Synology/ds109/MAINTAINERS | 1 +
> board/Synology/ds116/MAINTAINERS | 1 +
> board/Synology/ds414/MAINTAINERS | 1 +
> board/avionic-design/medcom-wide/MAINTAINERS | 1 +
> board/avionic-design/plutux/MAINTAINERS | 1 +
> board/avionic-design/tec-ng/MAINTAINERS | 1 +
> board/avionic-design/tec/MAINTAINERS | 1 +
> board/emulation/qemu-arm/MAINTAINERS | 1 +
> board/emulation/qemu-ppce500/MAINTAINERS | 1 +
> board/emulation/qemu-riscv/MAINTAINERS | 1 +
> board/emulation/qemu-x86/MAINTAINERS | 2 ++
> board/engicam/imx6q/MAINTAINERS | 1 +
> board/engicam/imx6ul/MAINTAINERS | 1 +
> board/engicam/imx8mm/MAINTAINERS | 1 +
> board/engicam/imx8mp/MAINTAINERS | 1 +
> board/engicam/px30_core/MAINTAINERS | 1 +
> board/engicam/stm32mp1/MAINTAINERS | 1 +
> board/gdsys/a38x/MAINTAINERS | 1 +
> board/gdsys/mpc8308/MAINTAINERS | 1 +
> board/keymile/km83xx/MAINTAINERS | 2 ++
> board/keymile/kmcent2/MAINTAINERS | 2 ++
> board/keymile/pg-wcom-ls102xa/MAINTAINERS | 2 ++
> board/keymile/secu1/MAINTAINERS | 2 ++
> board/toradex/apalis-imx8/MAINTAINERS | 1 +
> board/toradex/apalis-tk1/MAINTAINERS | 1 +
> board/toradex/apalis_imx6/MAINTAINERS | 1 +
> board/toradex/apalis_t30/MAINTAINERS | 1 +
> board/toradex/colibri-imx6ull/MAINTAINERS | 1 +
> board/toradex/colibri-imx8x/MAINTAINERS | 1 +
> board/toradex/colibri_imx6/MAINTAINERS | 1 +
> board/toradex/colibri_imx7/MAINTAINERS | 1 +
> board/toradex/colibri_t20/MAINTAINERS | 1 +
> board/toradex/colibri_t30/MAINTAINERS | 1 +
> board/toradex/colibri_vf/MAINTAINERS | 1 +
> board/toradex/verdin-imx8mm/MAINTAINERS | 1 +
> board/toradex/verdin-imx8mp/MAINTAINERS | 1 +
> 43 files changed, 48 insertions(+)
Reviewed-by: Simon Glass <sjg@chromium.org>
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH 6/7] MAINTAINERS: Deal with '+' in paths
2023-07-18 23:33 ` [PATCH 6/7] MAINTAINERS: Deal with '+' in paths Tom Rini
@ 2023-07-19 1:08 ` Simon Glass
2023-07-25 21:14 ` Tom Rini
1 sibling, 0 replies; 23+ messages in thread
From: Simon Glass @ 2023-07-19 1:08 UTC (permalink / raw)
To: Tom Rini; +Cc: u-boot
Hi Tom,
On Tue, 18 Jul 2023 at 17:34, Tom Rini <trini@konsulko.com> wrote:
>
> The listed paths are allowed to contain wildcards. This includes the
> '+' character which we have as a literal part of the path in a few
> cases. Escape the '+' here so that files are matched.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
> board/k+p/kp_imx53/MAINTAINERS | 3 ++-
> board/k+p/kp_imx6q_tpc/MAINTAINERS | 3 ++-
> board/l+g/vinco/MAINTAINERS | 2 +-
> 3 files changed, 5 insertions(+), 3 deletions(-)
Reviewed-by: Simon Glass <sjg@chromium.org>
Ug.
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH 5/7] MAINTAINERS: Fix path typos and similar
2023-07-18 23:33 ` [PATCH 5/7] MAINTAINERS: Fix path typos and similar Tom Rini
@ 2023-07-19 1:08 ` Simon Glass
2023-07-19 6:55 ` R: " Pegorer Massimo
2023-07-25 21:14 ` Tom Rini
2 siblings, 0 replies; 23+ messages in thread
From: Simon Glass @ 2023-07-19 1:08 UTC (permalink / raw)
To: Tom Rini; +Cc: u-boot
On Tue, 18 Jul 2023 at 17:34, Tom Rini <trini@konsulko.com> wrote:
>
> We have a number of cases where the in-tree path of files and where
> they presumably were when the first version of a patch were posted
> differ slightly. Correct these to point at where the files are now.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
> board/anbernic/rgxx3_rk3566/MAINTAINERS | 4 ++--
> board/broadcom/bcmns/MAINTAINERS | 4 ++--
> board/bsh/imx6ulz_smm_m2/MAINTAINERS | 2 +-
> board/cei/cei-tk1-som/MAINTAINERS | 2 +-
> board/comtrend/ar5315u/MAINTAINERS | 2 +-
> board/comtrend/ar5387un/MAINTAINERS | 2 +-
> board/comtrend/ct5361/MAINTAINERS | 2 +-
> board/comtrend/vr3032u/MAINTAINERS | 2 +-
> board/comtrend/wap5813n/MAINTAINERS | 2 +-
> board/data_modul/imx8mm_edm_sbc/MAINTAINERS | 2 +-
> board/data_modul/imx8mp_edm_sbc/MAINTAINERS | 2 +-
> board/google/chromebox_panther/MAINTAINERS | 2 +-
> board/hardkernel/odroid_go2/MAINTAINERS | 2 +-
> board/pine64/pinebook-pro-rk3399/MAINTAINERS | 2 +-
> board/pine64/pinephone-pro-rk3399/MAINTAINERS | 2 +-
> board/ronetix/imx7-cm/MAINTAINERS | 6 +++---
> board/seeed/npi_imx6ull/MAINTAINERS | 2 +-
> board/solidrun/clearfog/MAINTAINERS | 2 +-
> board/vamrs/rock960_rk3399/MAINTAINERS | 2 +-
> 19 files changed, 23 insertions(+), 23 deletions(-)
Reviewed-by: Simon Glass <sjg@chromium.org>
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH 7/7] MAINTAINERS: Add some missing directories or files
2023-07-18 23:33 ` [PATCH 7/7] MAINTAINERS: Add some missing directories or files Tom Rini
@ 2023-07-19 1:08 ` Simon Glass
2023-07-25 21:14 ` Tom Rini
1 sibling, 0 replies; 23+ messages in thread
From: Simon Glass @ 2023-07-19 1:08 UTC (permalink / raw)
To: Tom Rini; +Cc: u-boot
On Tue, 18 Jul 2023 at 17:34, Tom Rini <trini@konsulko.com> wrote:
>
> In a few cases we have MAINTAINERS entries that are missing obvious
> paths or files. Typically this means a board directory that did not list
> itself, but in a few cases we have a Kconfig file or similar.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
> MAINTAINERS | 1 +
> board/coreboot/coreboot/MAINTAINERS | 4 +---
> board/devboards/dbm-soc1/MAINTAINERS | 1 +
> board/efi/efi-x86_app/MAINTAINERS | 2 ++
> board/efi/efi-x86_payload/MAINTAINERS | 1 +
> board/firefly/firefly-rk3308/MAINTAINERS | 3 ++-
> board/freescale/ls1043ardb/MAINTAINERS | 1 -
> board/keymile/secu1/MAINTAINERS | 1 +
> board/softing/vining_fpga/MAINTAINERS | 1 +
> board/terasic/de0-nano-soc/MAINTAINERS | 1 +
> board/terasic/de1-soc/MAINTAINERS | 1 +
> board/terasic/de10-nano/MAINTAINERS | 1 +
> board/terasic/de10-standard/MAINTAINERS | 1 +
> board/terasic/sockit/MAINTAINERS | 1 +
> 14 files changed, 15 insertions(+), 5 deletions(-)
Reviewed-by: Simon Glass <sjg@chromium.org>
^ permalink raw reply [flat|nested] 23+ messages in thread
* R: [PATCH 5/7] MAINTAINERS: Fix path typos and similar
2023-07-18 23:33 ` [PATCH 5/7] MAINTAINERS: Fix path typos and similar Tom Rini
2023-07-19 1:08 ` Simon Glass
@ 2023-07-19 6:55 ` Pegorer Massimo
2023-07-19 11:47 ` Tom Rini
2023-07-25 21:14 ` Tom Rini
2 siblings, 1 reply; 23+ messages in thread
From: Pegorer Massimo @ 2023-07-19 6:55 UTC (permalink / raw)
To: Tom Rini; +Cc: u-boot@lists.denx.de, Simon Glass
Hi Tom,
> Da: U-Boot <u-boot-bounces@lists.denx.de> Per conto di Tom Rini
> Inviato: mercoledì 19 luglio 2023 01:34
> Oggetto: [PATCH 5/7] MAINTAINERS: Fix path typos and similar
>
> We have a number of cases where the in-tree path of files and where they
> presumably were when the first version of a patch were posted differ slightly.
> Correct these to point at where the files are now.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
> board/anbernic/rgxx3_rk3566/MAINTAINERS | 4 ++--
> board/broadcom/bcmns/MAINTAINERS | 4 ++--
> board/bsh/imx6ulz_smm_m2/MAINTAINERS | 2 +-
> board/cei/cei-tk1-som/MAINTAINERS | 2 +-
> board/comtrend/ar5315u/MAINTAINERS | 2 +-
> board/comtrend/ar5387un/MAINTAINERS | 2 +-
> board/comtrend/ct5361/MAINTAINERS | 2 +-
> board/comtrend/vr3032u/MAINTAINERS | 2 +-
> board/comtrend/wap5813n/MAINTAINERS | 2 +-
> board/data_modul/imx8mm_edm_sbc/MAINTAINERS | 2 +-
> board/data_modul/imx8mp_edm_sbc/MAINTAINERS | 2 +-
> board/google/chromebox_panther/MAINTAINERS | 2 +-
> board/hardkernel/odroid_go2/MAINTAINERS | 2 +-
> board/pine64/pinebook-pro-rk3399/MAINTAINERS | 2 +-
> board/pine64/pinephone-pro-rk3399/MAINTAINERS | 2 +-
> board/ronetix/imx7-cm/MAINTAINERS | 6 +++---
> board/seeed/npi_imx6ull/MAINTAINERS | 2 +-
> board/solidrun/clearfog/MAINTAINERS | 2 +-
> board/vamrs/rock960_rk3399/MAINTAINERS | 2 +-
> 19 files changed, 23 insertions(+), 23 deletions(-)
>
> diff --git a/board/anbernic/rgxx3_rk3566/MAINTAINERS
> b/board/anbernic/rgxx3_rk3566/MAINTAINERS
> index 647e49d28ab3..1c0d3fe7b5bf 100644
> --- a/board/anbernic/rgxx3_rk3566/MAINTAINERS
> +++ b/board/anbernic/rgxx3_rk3566/MAINTAINERS
> @@ -1,6 +1,6 @@
> RGXX3-RK3566
> M: Chris Morgan <macromorgan@hotmail.com>
> S: Maintained
> -F: board/anbernic/rgxx3-rk3566
> -F: include/configs/anbernic-rgxx3-rk3566
> +F: board/anbernic/rgxx3_rk3566
> +F: include/configs/anbernic-rgxx3-rk3566.h
> F: configs/anbernic-rgxx3_defconfig
> diff --git a/board/broadcom/bcmns/MAINTAINERS
> b/board/broadcom/bcmns/MAINTAINERS
> index 86b68c989cd4..63c6d8bb4aca 100644
> --- a/board/broadcom/bcmns/MAINTAINERS
> +++ b/board/broadcom/bcmns/MAINTAINERS
> @@ -1,6 +1,6 @@
> BCMNS BOARD
> M: Linus Walleij <linus.walleij@linaro.org>
> S: Maintained
> -F: board/broadcom/bcmnsp/
> +F: board/broadcom/bcmns/
> F: configs/bcmns_defconfig
> -F: include/configs/bcmnsp.h
> +F: include/configs/bcmns.h
> diff --git a/board/bsh/imx6ulz_smm_m2/MAINTAINERS
> b/board/bsh/imx6ulz_smm_m2/MAINTAINERS
> index 8f3d79dbb840..77a033c6cbb6 100644
> --- a/board/bsh/imx6ulz_smm_m2/MAINTAINERS
> +++ b/board/bsh/imx6ulz_smm_m2/MAINTAINERS
> @@ -1,6 +1,6 @@
> MX6ULZ_SMM_M2 BOARD
> M: Michael Trimarchi <michael@amarulasolutions.com>
> S: Maintained
> -F: board/bsh/mx6ulz_smm_m2/
> +F: board/bsh/imx6ulz_smm_m2/
> F: include/configs/imx6ulz_smm_m2.h
> F: configs/imx6ulz_smm_m2_defconfig
> diff --git a/board/cei/cei-tk1-som/MAINTAINERS b/board/cei/cei-tk1-
> som/MAINTAINERS
> index 192e1a34a762..f1817401a5df 100644
> --- a/board/cei/cei-tk1-som/MAINTAINERS
> +++ b/board/cei/cei-tk1-som/MAINTAINERS
> @@ -1,6 +1,6 @@
> TK1-SOM BOARD
> M: Peter.Chubb@data61.csiro.au
> S: Maintained
> -F: board/cei/tk1-som/
> +F: board/cei/cei-tk1-som/
> F: include/configs/cei-tk1-som.h
> F: configs/cei-tk1-som_defconfig
> diff --git a/board/comtrend/ar5315u/MAINTAINERS
> b/board/comtrend/ar5315u/MAINTAINERS
> index 048073cb422b..0515e03f6065 100644
> --- a/board/comtrend/ar5315u/MAINTAINERS
> +++ b/board/comtrend/ar5315u/MAINTAINERS
> @@ -1,6 +1,6 @@
> COMTREND AR-5315U BOARD
> M: Álvaro Fernández Rojas <noltari@gmail.com>
> S: Maintained
> -F: board/comtrend/ar-5315u/
> +F: board/comtrend/ar5315u/
> F: include/configs/comtrend_ar5315u.h
> F: configs/comtrend_ar5315u_ram_defconfig
> diff --git a/board/comtrend/ar5387un/MAINTAINERS
> b/board/comtrend/ar5387un/MAINTAINERS
> index bcaac64db09b..48757c9fd754 100644
> --- a/board/comtrend/ar5387un/MAINTAINERS
> +++ b/board/comtrend/ar5387un/MAINTAINERS
> @@ -1,6 +1,6 @@
> COMTREND AR-5387UN BOARD
> M: Álvaro Fernández Rojas <noltari@gmail.com>
> S: Maintained
> -F: board/comtrend/ar-5387un/
> +F: board/comtrend/ar5387un/
> F: include/configs/comtrend_ar5387un.h
> F: configs/comtrend_ar5387un_ram_defconfig
> diff --git a/board/comtrend/ct5361/MAINTAINERS
> b/board/comtrend/ct5361/MAINTAINERS
> index aea737a0bbda..3373e5036be6 100644
> --- a/board/comtrend/ct5361/MAINTAINERS
> +++ b/board/comtrend/ct5361/MAINTAINERS
> @@ -1,6 +1,6 @@
> COMTREND CT-5361 BOARD
> M: Álvaro Fernández Rojas <noltari@gmail.com>
> S: Maintained
> -F: board/comtrend/ct-5361/
> +F: board/comtrend/ct5361/
> F: include/configs/comtrend_ct5361.h
> F: configs/comtrend_ct5361_ram_defconfig
> diff --git a/board/comtrend/vr3032u/MAINTAINERS
> b/board/comtrend/vr3032u/MAINTAINERS
> index 833d7da4afa7..132101f4cd0c 100644
> --- a/board/comtrend/vr3032u/MAINTAINERS
> +++ b/board/comtrend/vr3032u/MAINTAINERS
> @@ -1,6 +1,6 @@
> COMTREND VR-3032U BOARD
> M: Álvaro Fernández Rojas <noltari@gmail.com>
> S: Maintained
> -F: board/comtrend/vr-3032u/
> +F: board/comtrend/vr3032u/
> F: include/configs/comtrend_vr-3032u.h
> F: configs/comtrend_vr3032u_ram_defconfig
> diff --git a/board/comtrend/wap5813n/MAINTAINERS
> b/board/comtrend/wap5813n/MAINTAINERS
> index f4d99796b4db..c6764831b2bc 100644
> --- a/board/comtrend/wap5813n/MAINTAINERS
> +++ b/board/comtrend/wap5813n/MAINTAINERS
> @@ -1,6 +1,6 @@
> COMTREND WAP-5813N BOARD
> M: Álvaro Fernández Rojas <noltari@gmail.com>
> S: Maintained
> -F: board/comtrend/wap-5813n/
> +F: board/comtrend/wap5813n/
> F: include/configs/comtrend_wap-5813n.h
> F: configs/comtrend_wap5813n_ram_defconfig
> diff --git a/board/data_modul/imx8mm_edm_sbc/MAINTAINERS
> b/board/data_modul/imx8mm_edm_sbc/MAINTAINERS
> index 72659c081e28..36af19b78f92 100644
> --- a/board/data_modul/imx8mm_edm_sbc/MAINTAINERS
> +++ b/board/data_modul/imx8mm_edm_sbc/MAINTAINERS
> @@ -3,6 +3,6 @@ M: Marek Vasut <marex@denx.de>
> S: Maintained
> F: arch/arm/dts/imx8mm-data-modul-edm-sbc.dts
> F: arch/arm/dts/imx8mm-data-modul-edm-sbc-u-boot.dtsi
> -F: board/data_modul/imx8mm_data_modul_edm_sbc/
> +F: board/data_modul/imx8mm_edm_sbc/
> F: configs/imx8mm_data_modul_edm_sbc_defconfig
> F: include/configs/imx8mm_data_modul_edm_sbc.h
> diff --git a/board/data_modul/imx8mp_edm_sbc/MAINTAINERS
> b/board/data_modul/imx8mp_edm_sbc/MAINTAINERS
> index a67e1047619b..8a49c8a67d5a 100644
> --- a/board/data_modul/imx8mp_edm_sbc/MAINTAINERS
> +++ b/board/data_modul/imx8mp_edm_sbc/MAINTAINERS
> @@ -3,6 +3,6 @@ M: Marek Vasut <marex@denx.de>
> S: Maintained
> F: arch/arm/dts/imx8mp-data-modul-edm-sbc.dts
> F: arch/arm/dts/imx8mp-data-modul-edm-sbc-u-boot.dtsi
> -F: board/data_modul/imx8mp_data_modul_edm_sbc/
> +F: board/data_modul/imx8mp_edm_sbc/
> F: configs/imx8mp_data_modul_edm_sbc_defconfig
> F: include/configs/imx8mp_data_modul_edm_sbc.h
> diff --git a/board/google/chromebox_panther/MAINTAINERS
> b/board/google/chromebox_panther/MAINTAINERS
> index c88774bc8683..4963a895bbad 100644
> --- a/board/google/chromebox_panther/MAINTAINERS
> +++ b/board/google/chromebox_panther/MAINTAINERS
> @@ -1,6 +1,6 @@
> CHROMEBOX PANTHER BOARD
> M: Simon Glass <sjg@chromium.org>
> S: Maintained
> -F: board/google/chromebook_panther/
> +F: board/google/chromebox_panther/
> F: include/configs/chromebox_panther.h
> F: configs/chromebox_panther_defconfig
> diff --git a/board/hardkernel/odroid_go2/MAINTAINERS
> b/board/hardkernel/odroid_go2/MAINTAINERS
> index eab622a70b7f..4d4c6e8fef67 100644
> --- a/board/hardkernel/odroid_go2/MAINTAINERS
> +++ b/board/hardkernel/odroid_go2/MAINTAINERS
> @@ -1,6 +1,6 @@
> GO2
> M: Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
Email address heiko.stuebner@theobroma-systems.com is not working.
Could be probably be updated to heiko@sntech.de ?
Massimo
> S: Maintained
> -F: board/odroid/go2
> +F: board/hardkernel/odroid_go2/
> F: include/configs/odroid_go2.h
> F: configs/odroid-go2_defconfig
> diff --git a/board/pine64/pinebook-pro-rk3399/MAINTAINERS
> b/board/pine64/pinebook-pro-rk3399/MAINTAINERS
> index 227c1c0bea9f..7300ca1b1b81 100644
> --- a/board/pine64/pinebook-pro-rk3399/MAINTAINERS
> +++ b/board/pine64/pinebook-pro-rk3399/MAINTAINERS
> @@ -1,7 +1,7 @@
> PINEBOOK_PRO
> M: Peter Robinson <pbrobinson@gmail.com>
> S: Maintained
> -F: board/pine64/rk3399-pinebook-pro/
> +F: board/pine64/pinebook-pro-rk3399/
> F: include/configs/rk3399-pinebook-pro.h
> F: arch/arm/dts/rk3399-pinebook-pro.dts
> F: arch/arm/dts/rk3399-pinebook-pro-u-boot.dtsi
> diff --git a/board/pine64/pinephone-pro-rk3399/MAINTAINERS
> b/board/pine64/pinephone-pro-rk3399/MAINTAINERS
> index c923ff1be32f..bc2dcdd8d423 100644
> --- a/board/pine64/pinephone-pro-rk3399/MAINTAINERS
> +++ b/board/pine64/pinephone-pro-rk3399/MAINTAINERS
> @@ -1,7 +1,7 @@
> PINEPHONE_PRO
> M: Peter Robinson <pbrobinson@gmail.com>
> S: Maintained
> -F: board/pine64/rk3399-pinephone-pro/
> +F: board/pine64/pinephone-pro-rk3399/
> F: include/configs/rk3399-pinephone-pro.h
> F: arch/arm/dts/rk3399-pinephone-pro.dts
> F: arch/arm/dts/rk3399-pinephone-pro-u-boot.dtsi
> diff --git a/board/ronetix/imx7-cm/MAINTAINERS b/board/ronetix/imx7-
> cm/MAINTAINERS
> index 184c8874638a..158c2b7cd083 100644
> --- a/board/ronetix/imx7-cm/MAINTAINERS
> +++ b/board/ronetix/imx7-cm/MAINTAINERS
> @@ -1,6 +1,6 @@
> i.MX7-CM BOARD
> M: Ilko Iliev <iliev@ronetix.com>
> S: Maintained
> -F: board/ronetix/imx7_cm/
> -F: include/configs/imx7_cm.h
> -F: configs/imx7_cm_defconfig
> \ No newline at end of file
> +F: board/ronetix/imx7-cm/
> +F: include/configs/imx7-cm.h
> +F: configs/imx7_cm_defconfig
> diff --git a/board/seeed/npi_imx6ull/MAINTAINERS
> b/board/seeed/npi_imx6ull/MAINTAINERS
> index c6a915c79b3c..ddf49849de1e 100644
> --- a/board/seeed/npi_imx6ull/MAINTAINERS
> +++ b/board/seeed/npi_imx6ull/MAINTAINERS
> @@ -4,6 +4,6 @@ S: Maintained
> F: arch/arm/dts/imx6ull-seeed-npi-imx6ull-dev-board.dts
> F: arch/arm/dts/imx6ull-seeed-npi-imx6ull-u-boot.dtsi
> F: arch/arm/dts/imx6ull-seeed-npi-imx6ull.dtsi
> -F: board/seeed/npi-imx6ull/
> +F: board/seeed/npi_imx6ull/
> F: configs/seeed_npi_imx6ull_defconfig
> F: include/configs/npi_imx6ull.h
> diff --git a/board/solidrun/clearfog/MAINTAINERS
> b/board/solidrun/clearfog/MAINTAINERS
> index 55bd1278049a..6b2d5d1146ea 100644
> --- a/board/solidrun/clearfog/MAINTAINERS
> +++ b/board/solidrun/clearfog/MAINTAINERS
> @@ -1,7 +1,7 @@
> CLEARFOG BOARD
> M: Stefan Roese <sr@denx.de>
> S: Maintained
> -F: board/soldrun/clearfog/
> +F: board/solidrun/clearfog/
> F: include/configs/clearfog.h
> F: configs/clearfog_defconfig
> F: configs/clearfog_gt_8k_defconfig
> diff --git a/board/vamrs/rock960_rk3399/MAINTAINERS
> b/board/vamrs/rock960_rk3399/MAINTAINERS
> index 5ee525649532..8821672a3abb 100644
> --- a/board/vamrs/rock960_rk3399/MAINTAINERS
> +++ b/board/vamrs/rock960_rk3399/MAINTAINERS
> @@ -1,7 +1,7 @@
> ROCK960-RK3399
> M: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
> S: Maintained
> -F: board/rockchip/rock960_rk3399
> +F: board/vamrs/rock960_rk3399/
> F: include/configs/rock960_rk3399.h
> F: configs/rock960-rk3399_defconfig
>
> --
> 2.34.1
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: R: [PATCH 5/7] MAINTAINERS: Fix path typos and similar
2023-07-19 6:55 ` R: " Pegorer Massimo
@ 2023-07-19 11:47 ` Tom Rini
0 siblings, 0 replies; 23+ messages in thread
From: Tom Rini @ 2023-07-19 11:47 UTC (permalink / raw)
To: Pegorer Massimo; +Cc: u-boot@lists.denx.de, Simon Glass
[-- Attachment #1: Type: text/plain, Size: 8842 bytes --]
On Wed, Jul 19, 2023 at 06:55:10AM +0000, Pegorer Massimo wrote:
> Hi Tom,
>
> > Da: U-Boot <u-boot-bounces@lists.denx.de> Per conto di Tom Rini
> > Inviato: mercoledì 19 luglio 2023 01:34
> > Oggetto: [PATCH 5/7] MAINTAINERS: Fix path typos and similar
> >
> > We have a number of cases where the in-tree path of files and where they
> > presumably were when the first version of a patch were posted differ slightly.
> > Correct these to point at where the files are now.
> >
> > Signed-off-by: Tom Rini <trini@konsulko.com>
> > ---
> > board/anbernic/rgxx3_rk3566/MAINTAINERS | 4 ++--
> > board/broadcom/bcmns/MAINTAINERS | 4 ++--
> > board/bsh/imx6ulz_smm_m2/MAINTAINERS | 2 +-
> > board/cei/cei-tk1-som/MAINTAINERS | 2 +-
> > board/comtrend/ar5315u/MAINTAINERS | 2 +-
> > board/comtrend/ar5387un/MAINTAINERS | 2 +-
> > board/comtrend/ct5361/MAINTAINERS | 2 +-
> > board/comtrend/vr3032u/MAINTAINERS | 2 +-
> > board/comtrend/wap5813n/MAINTAINERS | 2 +-
> > board/data_modul/imx8mm_edm_sbc/MAINTAINERS | 2 +-
> > board/data_modul/imx8mp_edm_sbc/MAINTAINERS | 2 +-
> > board/google/chromebox_panther/MAINTAINERS | 2 +-
> > board/hardkernel/odroid_go2/MAINTAINERS | 2 +-
> > board/pine64/pinebook-pro-rk3399/MAINTAINERS | 2 +-
> > board/pine64/pinephone-pro-rk3399/MAINTAINERS | 2 +-
> > board/ronetix/imx7-cm/MAINTAINERS | 6 +++---
> > board/seeed/npi_imx6ull/MAINTAINERS | 2 +-
> > board/solidrun/clearfog/MAINTAINERS | 2 +-
> > board/vamrs/rock960_rk3399/MAINTAINERS | 2 +-
> > 19 files changed, 23 insertions(+), 23 deletions(-)
> >
> > diff --git a/board/anbernic/rgxx3_rk3566/MAINTAINERS
> > b/board/anbernic/rgxx3_rk3566/MAINTAINERS
> > index 647e49d28ab3..1c0d3fe7b5bf 100644
> > --- a/board/anbernic/rgxx3_rk3566/MAINTAINERS
> > +++ b/board/anbernic/rgxx3_rk3566/MAINTAINERS
> > @@ -1,6 +1,6 @@
> > RGXX3-RK3566
> > M: Chris Morgan <macromorgan@hotmail.com>
> > S: Maintained
> > -F: board/anbernic/rgxx3-rk3566
> > -F: include/configs/anbernic-rgxx3-rk3566
> > +F: board/anbernic/rgxx3_rk3566
> > +F: include/configs/anbernic-rgxx3-rk3566.h
> > F: configs/anbernic-rgxx3_defconfig
> > diff --git a/board/broadcom/bcmns/MAINTAINERS
> > b/board/broadcom/bcmns/MAINTAINERS
> > index 86b68c989cd4..63c6d8bb4aca 100644
> > --- a/board/broadcom/bcmns/MAINTAINERS
> > +++ b/board/broadcom/bcmns/MAINTAINERS
> > @@ -1,6 +1,6 @@
> > BCMNS BOARD
> > M: Linus Walleij <linus.walleij@linaro.org>
> > S: Maintained
> > -F: board/broadcom/bcmnsp/
> > +F: board/broadcom/bcmns/
> > F: configs/bcmns_defconfig
> > -F: include/configs/bcmnsp.h
> > +F: include/configs/bcmns.h
> > diff --git a/board/bsh/imx6ulz_smm_m2/MAINTAINERS
> > b/board/bsh/imx6ulz_smm_m2/MAINTAINERS
> > index 8f3d79dbb840..77a033c6cbb6 100644
> > --- a/board/bsh/imx6ulz_smm_m2/MAINTAINERS
> > +++ b/board/bsh/imx6ulz_smm_m2/MAINTAINERS
> > @@ -1,6 +1,6 @@
> > MX6ULZ_SMM_M2 BOARD
> > M: Michael Trimarchi <michael@amarulasolutions.com>
> > S: Maintained
> > -F: board/bsh/mx6ulz_smm_m2/
> > +F: board/bsh/imx6ulz_smm_m2/
> > F: include/configs/imx6ulz_smm_m2.h
> > F: configs/imx6ulz_smm_m2_defconfig
> > diff --git a/board/cei/cei-tk1-som/MAINTAINERS b/board/cei/cei-tk1-
> > som/MAINTAINERS
> > index 192e1a34a762..f1817401a5df 100644
> > --- a/board/cei/cei-tk1-som/MAINTAINERS
> > +++ b/board/cei/cei-tk1-som/MAINTAINERS
> > @@ -1,6 +1,6 @@
> > TK1-SOM BOARD
> > M: Peter.Chubb@data61.csiro.au
> > S: Maintained
> > -F: board/cei/tk1-som/
> > +F: board/cei/cei-tk1-som/
> > F: include/configs/cei-tk1-som.h
> > F: configs/cei-tk1-som_defconfig
> > diff --git a/board/comtrend/ar5315u/MAINTAINERS
> > b/board/comtrend/ar5315u/MAINTAINERS
> > index 048073cb422b..0515e03f6065 100644
> > --- a/board/comtrend/ar5315u/MAINTAINERS
> > +++ b/board/comtrend/ar5315u/MAINTAINERS
> > @@ -1,6 +1,6 @@
> > COMTREND AR-5315U BOARD
> > M: Álvaro Fernández Rojas <noltari@gmail.com>
> > S: Maintained
> > -F: board/comtrend/ar-5315u/
> > +F: board/comtrend/ar5315u/
> > F: include/configs/comtrend_ar5315u.h
> > F: configs/comtrend_ar5315u_ram_defconfig
> > diff --git a/board/comtrend/ar5387un/MAINTAINERS
> > b/board/comtrend/ar5387un/MAINTAINERS
> > index bcaac64db09b..48757c9fd754 100644
> > --- a/board/comtrend/ar5387un/MAINTAINERS
> > +++ b/board/comtrend/ar5387un/MAINTAINERS
> > @@ -1,6 +1,6 @@
> > COMTREND AR-5387UN BOARD
> > M: Álvaro Fernández Rojas <noltari@gmail.com>
> > S: Maintained
> > -F: board/comtrend/ar-5387un/
> > +F: board/comtrend/ar5387un/
> > F: include/configs/comtrend_ar5387un.h
> > F: configs/comtrend_ar5387un_ram_defconfig
> > diff --git a/board/comtrend/ct5361/MAINTAINERS
> > b/board/comtrend/ct5361/MAINTAINERS
> > index aea737a0bbda..3373e5036be6 100644
> > --- a/board/comtrend/ct5361/MAINTAINERS
> > +++ b/board/comtrend/ct5361/MAINTAINERS
> > @@ -1,6 +1,6 @@
> > COMTREND CT-5361 BOARD
> > M: Álvaro Fernández Rojas <noltari@gmail.com>
> > S: Maintained
> > -F: board/comtrend/ct-5361/
> > +F: board/comtrend/ct5361/
> > F: include/configs/comtrend_ct5361.h
> > F: configs/comtrend_ct5361_ram_defconfig
> > diff --git a/board/comtrend/vr3032u/MAINTAINERS
> > b/board/comtrend/vr3032u/MAINTAINERS
> > index 833d7da4afa7..132101f4cd0c 100644
> > --- a/board/comtrend/vr3032u/MAINTAINERS
> > +++ b/board/comtrend/vr3032u/MAINTAINERS
> > @@ -1,6 +1,6 @@
> > COMTREND VR-3032U BOARD
> > M: Álvaro Fernández Rojas <noltari@gmail.com>
> > S: Maintained
> > -F: board/comtrend/vr-3032u/
> > +F: board/comtrend/vr3032u/
> > F: include/configs/comtrend_vr-3032u.h
> > F: configs/comtrend_vr3032u_ram_defconfig
> > diff --git a/board/comtrend/wap5813n/MAINTAINERS
> > b/board/comtrend/wap5813n/MAINTAINERS
> > index f4d99796b4db..c6764831b2bc 100644
> > --- a/board/comtrend/wap5813n/MAINTAINERS
> > +++ b/board/comtrend/wap5813n/MAINTAINERS
> > @@ -1,6 +1,6 @@
> > COMTREND WAP-5813N BOARD
> > M: Álvaro Fernández Rojas <noltari@gmail.com>
> > S: Maintained
> > -F: board/comtrend/wap-5813n/
> > +F: board/comtrend/wap5813n/
> > F: include/configs/comtrend_wap-5813n.h
> > F: configs/comtrend_wap5813n_ram_defconfig
> > diff --git a/board/data_modul/imx8mm_edm_sbc/MAINTAINERS
> > b/board/data_modul/imx8mm_edm_sbc/MAINTAINERS
> > index 72659c081e28..36af19b78f92 100644
> > --- a/board/data_modul/imx8mm_edm_sbc/MAINTAINERS
> > +++ b/board/data_modul/imx8mm_edm_sbc/MAINTAINERS
> > @@ -3,6 +3,6 @@ M: Marek Vasut <marex@denx.de>
> > S: Maintained
> > F: arch/arm/dts/imx8mm-data-modul-edm-sbc.dts
> > F: arch/arm/dts/imx8mm-data-modul-edm-sbc-u-boot.dtsi
> > -F: board/data_modul/imx8mm_data_modul_edm_sbc/
> > +F: board/data_modul/imx8mm_edm_sbc/
> > F: configs/imx8mm_data_modul_edm_sbc_defconfig
> > F: include/configs/imx8mm_data_modul_edm_sbc.h
> > diff --git a/board/data_modul/imx8mp_edm_sbc/MAINTAINERS
> > b/board/data_modul/imx8mp_edm_sbc/MAINTAINERS
> > index a67e1047619b..8a49c8a67d5a 100644
> > --- a/board/data_modul/imx8mp_edm_sbc/MAINTAINERS
> > +++ b/board/data_modul/imx8mp_edm_sbc/MAINTAINERS
> > @@ -3,6 +3,6 @@ M: Marek Vasut <marex@denx.de>
> > S: Maintained
> > F: arch/arm/dts/imx8mp-data-modul-edm-sbc.dts
> > F: arch/arm/dts/imx8mp-data-modul-edm-sbc-u-boot.dtsi
> > -F: board/data_modul/imx8mp_data_modul_edm_sbc/
> > +F: board/data_modul/imx8mp_edm_sbc/
> > F: configs/imx8mp_data_modul_edm_sbc_defconfig
> > F: include/configs/imx8mp_data_modul_edm_sbc.h
> > diff --git a/board/google/chromebox_panther/MAINTAINERS
> > b/board/google/chromebox_panther/MAINTAINERS
> > index c88774bc8683..4963a895bbad 100644
> > --- a/board/google/chromebox_panther/MAINTAINERS
> > +++ b/board/google/chromebox_panther/MAINTAINERS
> > @@ -1,6 +1,6 @@
> > CHROMEBOX PANTHER BOARD
> > M: Simon Glass <sjg@chromium.org>
> > S: Maintained
> > -F: board/google/chromebook_panther/
> > +F: board/google/chromebox_panther/
> > F: include/configs/chromebox_panther.h
> > F: configs/chromebox_panther_defconfig
> > diff --git a/board/hardkernel/odroid_go2/MAINTAINERS
> > b/board/hardkernel/odroid_go2/MAINTAINERS
> > index eab622a70b7f..4d4c6e8fef67 100644
> > --- a/board/hardkernel/odroid_go2/MAINTAINERS
> > +++ b/board/hardkernel/odroid_go2/MAINTAINERS
> > @@ -1,6 +1,6 @@
> > GO2
> > M: Heiko Stuebner <heiko.stuebner@theobroma-systems.com>
>
> Email address heiko.stuebner@theobroma-systems.com is not working.
> Could be probably be updated to heiko@sntech.de ?
Not in this patch, I'm waiting for Heiko to say something in the other
thread, which, thanks for reporting the problem.
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH 1/7] arm: Remove more remnants of bcmcygnus
2023-07-18 23:33 [PATCH 1/7] arm: Remove more remnants of bcmcygnus Tom Rini
` (6 preceding siblings ...)
2023-07-19 1:08 ` [PATCH 1/7] arm: Remove more remnants of bcmcygnus Simon Glass
@ 2023-07-25 21:14 ` Tom Rini
7 siblings, 0 replies; 23+ messages in thread
From: Tom Rini @ 2023-07-25 21:14 UTC (permalink / raw)
To: u-boot
[-- Attachment #1: Type: text/plain, Size: 268 bytes --]
On Tue, Jul 18, 2023 at 07:33:28PM -0400, Tom Rini wrote:
> Remove some leftover files from the bcmcygnus platform.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>
Applied to u-boot/master, thanks!
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH 2/7] arm: Remove leftover MAINTAINERS files
2023-07-18 23:33 ` [PATCH 2/7] arm: Remove leftover MAINTAINERS files Tom Rini
2023-07-19 1:08 ` Simon Glass
@ 2023-07-25 21:14 ` Tom Rini
1 sibling, 0 replies; 23+ messages in thread
From: Tom Rini @ 2023-07-25 21:14 UTC (permalink / raw)
To: u-boot
[-- Attachment #1: Type: text/plain, Size: 297 bytes --]
On Tue, Jul 18, 2023 at 07:33:29PM -0400, Tom Rini wrote:
> These platforms have been removed, but the MAINTAINERS file was missed,
> clean up.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>
Applied to u-boot/master, thanks!
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH 3/7] xes: Remove leftover code
2023-07-18 23:33 ` [PATCH 3/7] xes: Remove leftover code Tom Rini
2023-07-19 1:08 ` Simon Glass
@ 2023-07-25 21:14 ` Tom Rini
1 sibling, 0 replies; 23+ messages in thread
From: Tom Rini @ 2023-07-25 21:14 UTC (permalink / raw)
To: u-boot
[-- Attachment #1: Type: text/plain, Size: 309 bytes --]
On Tue, Jul 18, 2023 at 07:33:30PM -0400, Tom Rini wrote:
> The platforms here have been removed, but the common code directory was
> forgotten. Clean up.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>
Applied to u-boot/master, thanks!
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH 4/7] MAINTAINERS: Add a number of "common" directories
2023-07-18 23:33 ` [PATCH 4/7] MAINTAINERS: Add a number of "common" directories Tom Rini
2023-07-19 1:08 ` Simon Glass
@ 2023-07-25 21:14 ` Tom Rini
1 sibling, 0 replies; 23+ messages in thread
From: Tom Rini @ 2023-07-25 21:14 UTC (permalink / raw)
To: u-boot
[-- Attachment #1: Type: text/plain, Size: 363 bytes --]
On Tue, Jul 18, 2023 at 07:33:31PM -0400, Tom Rini wrote:
> A number of platforms have "common" directories that are in turn not
> listed by the board MAINTAINERS file. Add these directories in many
> cases.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>
Applied to u-boot/master, thanks!
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH 5/7] MAINTAINERS: Fix path typos and similar
2023-07-18 23:33 ` [PATCH 5/7] MAINTAINERS: Fix path typos and similar Tom Rini
2023-07-19 1:08 ` Simon Glass
2023-07-19 6:55 ` R: " Pegorer Massimo
@ 2023-07-25 21:14 ` Tom Rini
2 siblings, 0 replies; 23+ messages in thread
From: Tom Rini @ 2023-07-25 21:14 UTC (permalink / raw)
To: u-boot
[-- Attachment #1: Type: text/plain, Size: 422 bytes --]
On Tue, Jul 18, 2023 at 07:33:32PM -0400, Tom Rini wrote:
> We have a number of cases where the in-tree path of files and where
> they presumably were when the first version of a patch were posted
> differ slightly. Correct these to point at where the files are now.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>
Applied to u-boot/master, thanks!
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH 6/7] MAINTAINERS: Deal with '+' in paths
2023-07-18 23:33 ` [PATCH 6/7] MAINTAINERS: Deal with '+' in paths Tom Rini
2023-07-19 1:08 ` Simon Glass
@ 2023-07-25 21:14 ` Tom Rini
1 sibling, 0 replies; 23+ messages in thread
From: Tom Rini @ 2023-07-25 21:14 UTC (permalink / raw)
To: u-boot
[-- Attachment #1: Type: text/plain, Size: 409 bytes --]
On Tue, Jul 18, 2023 at 07:33:33PM -0400, Tom Rini wrote:
> The listed paths are allowed to contain wildcards. This includes the
> '+' character which we have as a literal part of the path in a few
> cases. Escape the '+' here so that files are matched.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>
Applied to u-boot/master, thanks!
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 23+ messages in thread
* Re: [PATCH 7/7] MAINTAINERS: Add some missing directories or files
2023-07-18 23:33 ` [PATCH 7/7] MAINTAINERS: Add some missing directories or files Tom Rini
2023-07-19 1:08 ` Simon Glass
@ 2023-07-25 21:14 ` Tom Rini
1 sibling, 0 replies; 23+ messages in thread
From: Tom Rini @ 2023-07-25 21:14 UTC (permalink / raw)
To: u-boot
[-- Attachment #1: Type: text/plain, Size: 421 bytes --]
On Tue, Jul 18, 2023 at 07:33:34PM -0400, Tom Rini wrote:
> In a few cases we have MAINTAINERS entries that are missing obvious
> paths or files. Typically this means a board directory that did not list
> itself, but in a few cases we have a Kconfig file or similar.
>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> Reviewed-by: Simon Glass <sjg@chromium.org>
Applied to u-boot/master, thanks!
--
Tom
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]
^ permalink raw reply [flat|nested] 23+ messages in thread
end of thread, other threads:[~2023-07-25 21:17 UTC | newest]
Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-18 23:33 [PATCH 1/7] arm: Remove more remnants of bcmcygnus Tom Rini
2023-07-18 23:33 ` [PATCH 2/7] arm: Remove leftover MAINTAINERS files Tom Rini
2023-07-19 1:08 ` Simon Glass
2023-07-25 21:14 ` Tom Rini
2023-07-18 23:33 ` [PATCH 3/7] xes: Remove leftover code Tom Rini
2023-07-19 1:08 ` Simon Glass
2023-07-25 21:14 ` Tom Rini
2023-07-18 23:33 ` [PATCH 4/7] MAINTAINERS: Add a number of "common" directories Tom Rini
2023-07-19 1:08 ` Simon Glass
2023-07-25 21:14 ` Tom Rini
2023-07-18 23:33 ` [PATCH 5/7] MAINTAINERS: Fix path typos and similar Tom Rini
2023-07-19 1:08 ` Simon Glass
2023-07-19 6:55 ` R: " Pegorer Massimo
2023-07-19 11:47 ` Tom Rini
2023-07-25 21:14 ` Tom Rini
2023-07-18 23:33 ` [PATCH 6/7] MAINTAINERS: Deal with '+' in paths Tom Rini
2023-07-19 1:08 ` Simon Glass
2023-07-25 21:14 ` Tom Rini
2023-07-18 23:33 ` [PATCH 7/7] MAINTAINERS: Add some missing directories or files Tom Rini
2023-07-19 1:08 ` Simon Glass
2023-07-25 21:14 ` Tom Rini
2023-07-19 1:08 ` [PATCH 1/7] arm: Remove more remnants of bcmcygnus Simon Glass
2023-07-25 21:14 ` Tom Rini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).