public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/12] Drop old pre-generic-board code
@ 2016-05-15  0:49 Simon Glass
  2016-05-15  0:49 ` [U-Boot] [PATCH 01/12] openrisc: Drop the arch-specific board init Simon Glass
                   ` (11 more replies)
  0 siblings, 12 replies; 36+ messages in thread
From: Simon Glass @ 2016-05-15  0:49 UTC (permalink / raw)
  To: u-boot

The deadline for converting boards passed long ago. It is time to convert
the two remaining architectures (openrisc and sh) and remove the old code.

Both of these architectures will likely need work to get them running again.
If this doesn't happen we could consider removing the code at some point.

This series completes this migration.


Simon Glass (12):
  openrisc: Drop the arch-specific board init
  Remove/update old generic-board documentation and warning
  board_f: Don't require CONFIG_SYS_MONITOR_BASE
  sh: Fix build errors for generic board
  sh: Drop the arch-specific board init
  avr32: Drop unused code in u-boot.h
  m68k: Drop unused code in u-boot.h
  mips: Drop unused code in u-boot.h
  powerpc: Drop unused code related to generic board
  Drop use of CONFIG_SYS_GENERIC_BOARD in U-Boot
  Drop references to CONFIG_SYS_GENERIC_BOARD in config files
  Drop HAVE_GENERIC_BOARD and SYS_GENERIC_BOARD options

 Makefile                           |  14 ---
 README                             |  10 --
 arch/Kconfig                       |  32 -------
 arch/avr32/include/asm/u-boot.h    |  20 ----
 arch/m68k/include/asm/u-boot.h     |  39 --------
 arch/mips/include/asm/u-boot.h     |  16 ----
 arch/openrisc/lib/Makefile         |   1 -
 arch/openrisc/lib/board.c          | 140 ---------------------------
 arch/powerpc/cpu/mpc5xxx/start.S   |   3 +-
 arch/powerpc/cpu/ppc4xx/cpu_init.c |   7 --
 arch/powerpc/cpu/ppc4xx/start.S    |   4 -
 arch/powerpc/include/asm/u-boot.h  | 104 --------------------
 arch/powerpc/lib/Makefile          |   5 -
 arch/sh/cpu/sh2/cpu.c              |   6 ++
 arch/sh/cpu/sh2/start.S            |   7 +-
 arch/sh/cpu/sh3/cpu.c              |   6 ++
 arch/sh/cpu/sh3/start.S            |   7 +-
 arch/sh/cpu/sh4/cpu.c              |   6 ++
 arch/sh/cpu/sh4/start.S            |   7 +-
 arch/sh/cpu/u-boot.lds             |   1 +
 arch/sh/include/asm/u-boot.h       |  12 +--
 arch/sh/lib/Makefile               |   1 -
 arch/sh/lib/board.c                | 189 -------------------------------------
 board/renesas/sh7752evb/u-boot.lds |   1 +
 board/renesas/sh7753evb/u-boot.lds |   1 +
 board/renesas/sh7757lcr/u-boot.lds |   1 +
 board/sandbox/README.sandbox       |   3 +-
 common/Makefile                    |   4 +-
 common/board_f.c                   |   2 +-
 common/main.c                      |   6 --
 doc/README.fdt-control             |   6 --
 doc/README.generic-board           |  69 ++------------
 include/configs/gr_cpci_ax2000.h   |   1 -
 include/configs/gr_ep2s60.h        |   1 -
 include/configs/gr_xc3s_1500.h     |   1 -
 include/configs/grsim.h            |   1 -
 include/configs/grsim_leon2.h      |   1 -
 include/configs/openrisc-generic.h |   1 -
 include/watchdog.h                 |   3 +-
 39 files changed, 49 insertions(+), 690 deletions(-)
 delete mode 100644 arch/openrisc/lib/board.c
 delete mode 100644 arch/sh/lib/board.c

-- 
2.8.0.rc3.226.g39d4020

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

end of thread, other threads:[~2016-05-30 17:59 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-15  0:49 [U-Boot] [PATCH 00/12] Drop old pre-generic-board code Simon Glass
2016-05-15  0:49 ` [U-Boot] [PATCH 01/12] openrisc: Drop the arch-specific board init Simon Glass
2016-05-30 17:58   ` [U-Boot] [U-Boot, " Tom Rini
2016-05-15  0:49 ` [U-Boot] [PATCH 02/12] Remove/update old generic-board documentation and warning Simon Glass
2016-05-18  7:27   ` Andreas Bießmann
2016-05-30 17:58   ` [U-Boot] [U-Boot, " Tom Rini
2016-05-15  0:49 ` [U-Boot] [PATCH 03/12] board_f: Don't require CONFIG_SYS_MONITOR_BASE Simon Glass
2016-05-18  7:33   ` Andreas Bießmann
2016-05-18  7:34   ` Andreas Bießmann
2016-05-19  3:59     ` Simon Glass
2016-05-30 17:58   ` [U-Boot] [U-Boot, " Tom Rini
2016-05-15  0:49 ` [U-Boot] [PATCH 04/12] sh: Fix build errors for generic board Simon Glass
2016-05-30 17:58   ` [U-Boot] [U-Boot,04/12] " Tom Rini
2016-05-15  0:49 ` [U-Boot] [PATCH 05/12] sh: Drop the arch-specific board init Simon Glass
2016-05-30 17:58   ` [U-Boot] [U-Boot,05/12] " Tom Rini
2016-05-15  0:49 ` [U-Boot] [PATCH 06/12] avr32: Drop unused code in u-boot.h Simon Glass
2016-05-18  7:23   ` Andreas Bießmann
2016-05-30 17:58   ` [U-Boot] [U-Boot,06/12] " Tom Rini
2016-05-15  0:49 ` [U-Boot] [PATCH 07/12] m68k: " Simon Glass
2016-05-17 20:42   ` Angelo Dureghello
2016-05-30 17:58   ` [U-Boot] [U-Boot,07/12] " Tom Rini
2016-05-15  0:49 ` [U-Boot] [PATCH 08/12] mips: " Simon Glass
2016-05-18  9:58   ` Daniel Schwierzeck
2016-05-30 17:59   ` [U-Boot] [U-Boot,08/12] " Tom Rini
2016-05-15  0:49 ` [U-Boot] [PATCH 09/12] powerpc: Drop unused code related to generic board Simon Glass
2016-05-30 17:59   ` [U-Boot] [U-Boot, " Tom Rini
2016-05-30 17:59   ` Tom Rini
2016-05-15  0:49 ` [U-Boot] [PATCH 10/12] Drop use of CONFIG_SYS_GENERIC_BOARD in U-Boot Simon Glass
2016-05-18  7:39   ` Andreas Bießmann
2016-05-30 17:59   ` [U-Boot] [U-Boot, " Tom Rini
2016-05-15  0:49 ` [U-Boot] [PATCH 11/12] Drop references to CONFIG_SYS_GENERIC_BOARD in config files Simon Glass
2016-05-30 17:59   ` [U-Boot] [U-Boot, " Tom Rini
2016-05-15  0:49 ` [U-Boot] [PATCH 12/12] Drop HAVE_GENERIC_BOARD and SYS_GENERIC_BOARD options Simon Glass
2016-05-17 20:45   ` Angelo Dureghello
2016-05-18  8:37   ` Andreas Bießmann
2016-05-30 17:59   ` [U-Boot] [U-Boot, " Tom Rini

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