public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH v5 00/21] Kconfig: Tidy up some options
@ 2023-09-14 16:55 Simon Glass
  2023-09-14 16:55 ` [PATCH v5 01/21] lib: rational: Move the Kconfigs into the correct place Simon Glass
                   ` (22 more replies)
  0 siblings, 23 replies; 26+ messages in thread
From: Simon Glass @ 2023-09-14 16:55 UTC (permalink / raw)
  To: U-Boot Mailing List
  Cc: Tom Rini, Mark Kettenis, Heinrich Schuchardt, Simon Glass,
	Anatolij Gustschin, Andre Przywara, Bin Meng, Brandon Maier,
	Devarsh Thakkar, Fabrice Gasnier, Hai Pham, Harald Seiler,
	Hugo Villeneuve, Ilias Apalodimas, Johan Jonker, Kautuk Consul,
	Leo Yu-Chi Liang, Marek Vasut, Marek Vasut, Masahiro Yamada,
	Michal Simek, Nikhil M Jain, Nikita Shubin, Oleksandr Suvorov,
	Patrice Chotard, Patrick Delaunay, Stefan Roese, Sughosh Ganu,
	Tero Kristo

The view from 'make menuconfig' is confusing in places. This series aims
to improve the top-level menu and also the boot menu.

It also groups FDT-fixup options tegether, at least the ones I could fine.

Finally this series marks the distro scripts as deprecated, so people have
a pointer to standard boot.

Changes in v5:
- Add back the Makefile condition, for efi-app builds

Changes in v4:
- Just move these options to driver/video for later consideration
- Allow TIMESTAMP without FIT
- Add new patch to drop SPL/TPL_RAM_SUPPORT option for SPL_LOAD_FIT_ADDRESS
- Add new patch to make ARCH_FIXUP_FDT_MEMORY depend on OF_LIBFDT

Changes in v3:
- Drop comment about an update/ directory
- Drop extra newline and quote
- Add new patch to drop CMD_MTDPARTS condition for FDT_FIXUP_PARTITIONS
- Drop patch 'Move SYS_RX_ETH_BUFFER into the network menu'
- Drop patch 'video: Move BMP options and code to video directory'

Changes in v2:
- Add new patch to move bmp code to drivers/video
- Fix FMU typo in the subject
- Drop now-unnecessary depends on FWU_MULTI_BANK_UPDATE
- Mention in the DISTRO_DEFAULTS option that it is script-based
- Expand and rewrite the commit message
- Use the word 'Mark' instead of 'Make' to improve the English

Simon Glass (21):
  lib: rational: Move the Kconfigs into the correct place
  Kconfig: Move API into general setup
  video: Move bmp code to drivers/video
  video: Move the BMP options
  FWU: Avoid showing an unselectable menu option
  test: Move POST under a renamed Testing section
  boot: Move fdt_support to boot/
  Move fdt_simplefb to boot/
  boot: Move some other fdt-fixup options to the same menu
  boot: Rename Android-boot text
  Kconfig: Create a menu for FIT
  spl: Tidy up load address in spl_ram
  spl: Drop SPL/TPL_RAM_SUPPORT option for SPL_LOAD_FIT_ADDRESS
  Kconfig: Move SPL_FIT under FIT
  boot: Make standard boot a menu
  Kconfig: Move TEXT_BASE et al under general setup
  Mark DISTRO_DEFAULTS as deprecated
  Make ARCH_FIXUP_FDT_MEMORY depend on OF_LIBFDT
  boot: Join FDT_FIXUP_PARTITIONS with related options
  boot: Drop CMD_MTDPARTS condition for FDT_FIXUP_PARTITIONS
  boot: Join ARCH_FIXUP_FDT_MEMORY with related options

 Kconfig                         |  67 +++++++++-
 boot/Kconfig                    | 222 +++++++++++++-------------------
 boot/Makefile                   |   4 +
 {common => boot}/fdt_simplefb.c |   0
 {common => boot}/fdt_support.c  |   0
 common/Kconfig                  |  20 ---
 common/Makefile                 |   4 -
 common/spl/spl_ram.c            |  19 ++-
 doc/develop/bootstd.rst         |  23 ++++
 drivers/video/Kconfig           |  16 +++
 drivers/video/Makefile          |   1 +
 {common => drivers/video}/bmp.c |   0
 lib/Kconfig                     |  17 +--
 lib/fwu_updates/Kconfig         |   9 +-
 test/Kconfig                    |  12 +-
 15 files changed, 225 insertions(+), 189 deletions(-)
 rename {common => boot}/fdt_simplefb.c (100%)
 rename {common => boot}/fdt_support.c (100%)
 rename {common => drivers/video}/bmp.c (100%)

-- 
2.42.0.459.ge4e396fd5e-goog


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

end of thread, other threads:[~2023-09-19 21:44 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-14 16:55 [PATCH v5 00/21] Kconfig: Tidy up some options Simon Glass
2023-09-14 16:55 ` [PATCH v5 01/21] lib: rational: Move the Kconfigs into the correct place Simon Glass
2023-09-14 16:55 ` [PATCH v5 02/21] Kconfig: Move API into general setup Simon Glass
2023-09-14 16:55 ` [PATCH v5 03/21] video: Move bmp code to drivers/video Simon Glass
2023-09-14 16:55 ` [PATCH v5 04/21] video: Move the BMP options Simon Glass
2023-09-14 16:55 ` [PATCH v5 05/21] FWU: Avoid showing an unselectable menu option Simon Glass
2023-09-15  5:11   ` Ilias Apalodimas
2023-09-14 16:55 ` [PATCH v5 06/21] test: Move POST under a renamed Testing section Simon Glass
2023-09-14 16:55 ` [PATCH v5 07/21] boot: Move fdt_support to boot/ Simon Glass
2023-09-14 16:55 ` [PATCH v5 08/21] Move fdt_simplefb " Simon Glass
2023-09-14 16:55 ` [PATCH v5 09/21] boot: Move some other fdt-fixup options to the same menu Simon Glass
2023-09-14 16:55 ` [PATCH v5 10/21] boot: Rename Android-boot text Simon Glass
2023-09-15  7:59   ` Mattijs Korpershoek
2023-09-14 16:55 ` [PATCH v5 11/21] Kconfig: Create a menu for FIT Simon Glass
2023-09-14 16:55 ` [PATCH v5 12/21] spl: Tidy up load address in spl_ram Simon Glass
2023-09-14 16:55 ` [PATCH v5 13/21] spl: Drop SPL/TPL_RAM_SUPPORT option for SPL_LOAD_FIT_ADDRESS Simon Glass
2023-09-14 16:55 ` [PATCH v5 14/21] Kconfig: Move SPL_FIT under FIT Simon Glass
2023-09-14 16:55 ` [PATCH v5 15/21] boot: Make standard boot a menu Simon Glass
2023-09-14 16:55 ` [PATCH v5 16/21] Kconfig: Move TEXT_BASE et al under general setup Simon Glass
2023-09-14 16:55 ` [PATCH v5 17/21] Mark DISTRO_DEFAULTS as deprecated Simon Glass
2023-09-14 16:55 ` [PATCH v5 18/21] Make ARCH_FIXUP_FDT_MEMORY depend on OF_LIBFDT Simon Glass
2023-09-14 16:55 ` [PATCH v5 19/21] boot: Join FDT_FIXUP_PARTITIONS with related options Simon Glass
2023-09-14 16:55 ` [PATCH v5 20/21] boot: Drop CMD_MTDPARTS condition for FDT_FIXUP_PARTITIONS Simon Glass
2023-09-14 16:55 ` [PATCH v5 21/21] boot: Join ARCH_FIXUP_FDT_MEMORY with related options Simon Glass
2023-09-15 19:02 ` [PATCH v5 00/21] Kconfig: Tidy up some options Tom Rini
2023-09-19 21:44 ` Tom Rini

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