[PATCH 1/1] get_maintainer.pl: slightly modify penguin_chief

2024-01-11 Thread Anthony Loiseau
From: Anthony Loiseau Penguin chiefs are actually stripped out from get_maintainer results unless --git-chief-penguins is provided, which appends them to all results instead. This is a issue for U-Boot since Tom Rini (penguin chief) is also maintainer of some sub-trees ("ARM", "A

[PATCH 0/1] get_maintainer.pl: slightly modify penguin_chief

2024-01-11 Thread Anthony Loiseau
From: Anthony Loiseau Please find a patch proposal which slightly modifies get_maintainer.pl penguin_chief list. This proposal aims to workaround get_maintainer.pl behavior for ARM, ARM_TI and THE_REST sections (see MAINTAINERS file) for which Tom Rini was not outputed as a maintainer by

[PATCH 1/1] MAINTAINERS: fix folders within glob pattern

2023-12-22 Thread Anthony Loiseau
From: Anthony Loiseau A "F: foo*" entry does not match any foo*/ folder nor its subtree, another "F: foo*/" entry is needed for that. Add missing foo*/ entries where an existing folder was ignored, so this folder and its subtree is properly covered. Arm tegra, Arm TI and

[PATCH 0/1] MAINTAINERS: fix folders within glob pattern

2023-12-22 Thread Anthony Loiseau
From: Anthony Loiseau This patch fixes few folders I think mishandled within MAINTAINERS file. For example, files within drivers/clk/tegra/ were not affilated to ARM TEGRA because rule "F: drivers/*/tegra*" does not match them. See MAINTAINERS file embedded documentation on top. Th

[PATCH v2 1/1] fw_env: autodetect NAND erase size and env sectors

2023-12-21 Thread Anthony Loiseau
From: Anthony Loiseau As already done for NOR chips, if device ESIZE and ENVSECTORS static configurations are both zero, then autodetect them at runtime. Cc: Joe Hershberger cc: Stefan Agner cc: Rasmus Villemoes Signed-off-by: Anthony Loiseau --- tools/env/README | 3 +++ tools/env

[PATCH v2 0/1] fw_env: auto-detect NAND characteristics

2023-12-21 Thread Anthony Loiseau
From: Anthony Loiseau Hello, Here is a patch proposal which modifies fw_env so NAND chip erase size as well as environment sector counts are guessed at runtime if they are both statically configured as zero. This actually extends a previous similar behavior which was NOR-specific, useful when a

fw_env: auto-detect NAND characteristics

2023-12-21 Thread Anthony Loiseau
added). My feeling is that this patch is small enough to be confident it will work on master as it worked on my old tree. Opened to any review or request, best rergards, Anthony Loiseau

[PATCH] fw_env: autodetect NAND erase size and env sectors

2023-12-21 Thread Anthony Loiseau
From: Anthony Loiseau As already done for NOR chips, if device ESIZE and ENVSECTORS static configurations are both zero, then autodetect them at runtime. Cc: Joe Hershberger Cc: Stefan Agner Signed-off-by: Anthony Loiseau --- tools/env/README | 3 +++ tools/env/fw_env.c | 11