All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/8] m68k: stop grepping and refactor CPU flags
@ 2015-03-27  8:01 Masahiro Yamada
  2015-03-27  8:01 ` [U-Boot] [PATCH 1/8] m68k: mcf52x2: move CPU type to Kconfig and refactor config.mk Masahiro Yamada
                   ` (7 more replies)
  0 siblings, 8 replies; 17+ messages in thread
From: Masahiro Yamada @ 2015-03-27  8:01 UTC (permalink / raw)
  To: u-boot

arch/m68k/cpu/mcf52x2/config.mk
arch/m68k/cpu/mcf530x/config.mk
arch/m68k/cpu/mcf532x/config.mk

are not very nice.  They use "grep" to decide the CPU type.
They can be tidied up by moving the CPU type CONFIGs to Kconfig.

I built all the M68k boards and compared MD5SUM for each of them.
I confirmed this series still produces the same output binaries.



Masahiro Yamada (8):
  m68k: mcf52x2: move CPU type to Kconfig and refactor config.mk
  m68k: mcf530x: move CPU type to Kconfig and refactor config.mk
  m68k: mcf532x: move CPU type to Kconfig and refactor config.mk
  m68k: mcf5445x: move CPU type to Kconfig and refactor config.mk
  m68k: mcf5227x: move CPU type to Kconfig and refactor config.mk
  m68k: mcf523x: move CPU type to Kconfig and refactor config.mk
  m68k: mcf547x_8x: move CPU type to Kconfig and refactor config.mk
  m68k: merge per-CPU config.mk into arch/m68k/Makefile

 arch/m68k/Kconfig                  | 129 +++++++++++++++++++++++++++++++++++++
 arch/m68k/Makefile                 |  29 +++++++++
 arch/m68k/cpu/mcf5227x/config.mk   |  10 ---
 arch/m68k/cpu/mcf523x/config.mk    |  10 ---
 arch/m68k/cpu/mcf52x2/config.mk    |  39 -----------
 arch/m68k/cpu/mcf530x/config.mk    |  12 ----
 arch/m68k/cpu/mcf532x/config.mk    |  19 ------
 arch/m68k/cpu/mcf5445x/config.mk   |  25 -------
 arch/m68k/cpu/mcf547x_8x/config.mk |  16 -----
 include/configs/M5208EVBE.h        |   3 -
 include/configs/M52277EVB.h        |   2 -
 include/configs/M5235EVB.h         |   2 -
 include/configs/M5249EVB.h         |   3 -
 include/configs/M5253DEMO.h        |   2 -
 include/configs/M5253EVBE.h        |   2 -
 include/configs/M5272C3.h          |   3 -
 include/configs/M5275EVB.h         |   2 -
 include/configs/M5282EVB.h         |   3 -
 include/configs/M53017EVB.h        |   2 -
 include/configs/M5329EVB.h         |   2 -
 include/configs/M5373EVB.h         |   2 -
 include/configs/M54418TWR.h        |   2 -
 include/configs/M54451EVB.h        |   2 -
 include/configs/M54455EVB.h        |   2 -
 include/configs/M5475EVB.h         |   3 -
 include/configs/M5485EVB.h         |   3 -
 include/configs/amcore.h           |   3 -
 include/configs/astro_mcf5373l.h   |  10 ---
 include/configs/cobra5272.h        |  10 ---
 include/configs/eb_cpu5282.h       |   3 -
 30 files changed, 158 insertions(+), 197 deletions(-)
 delete mode 100644 arch/m68k/cpu/mcf5227x/config.mk
 delete mode 100644 arch/m68k/cpu/mcf523x/config.mk
 delete mode 100644 arch/m68k/cpu/mcf52x2/config.mk
 delete mode 100644 arch/m68k/cpu/mcf530x/config.mk
 delete mode 100644 arch/m68k/cpu/mcf532x/config.mk
 delete mode 100644 arch/m68k/cpu/mcf5445x/config.mk
 delete mode 100644 arch/m68k/cpu/mcf547x_8x/config.mk

-- 
1.9.1

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

end of thread, other threads:[~2015-03-28 18:09 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-27  8:01 [U-Boot] [PATCH 0/8] m68k: stop grepping and refactor CPU flags Masahiro Yamada
2015-03-27  8:01 ` [U-Boot] [PATCH 1/8] m68k: mcf52x2: move CPU type to Kconfig and refactor config.mk Masahiro Yamada
2015-03-28 18:08   ` [U-Boot] [U-Boot, " Tom Rini
2015-03-27  8:01 ` [U-Boot] [PATCH 2/8] m68k: mcf530x: " Masahiro Yamada
2015-03-28 18:08   ` [U-Boot] [U-Boot, " Tom Rini
2015-03-27  8:01 ` [U-Boot] [PATCH 3/8] m68k: mcf532x: " Masahiro Yamada
2015-03-28 18:08   ` [U-Boot] [U-Boot, " Tom Rini
2015-03-27  8:01 ` [U-Boot] [PATCH 4/8] m68k: mcf5445x: " Masahiro Yamada
2015-03-28 18:08   ` [U-Boot] [U-Boot, " Tom Rini
2015-03-27  8:01 ` [U-Boot] [PATCH 5/8] m68k: mcf5227x: " Masahiro Yamada
2015-03-28 18:08   ` [U-Boot] [U-Boot, " Tom Rini
2015-03-27  8:01 ` [U-Boot] [PATCH 6/8] m68k: mcf523x: " Masahiro Yamada
2015-03-28 18:09   ` [U-Boot] [U-Boot, " Tom Rini
2015-03-27  8:01 ` [U-Boot] [PATCH 7/8] m68k: mcf547x_8x: " Masahiro Yamada
2015-03-28 18:09   ` [U-Boot] [U-Boot, " Tom Rini
2015-03-27  8:01 ` [U-Boot] [PATCH 8/8] m68k: merge per-CPU config.mk into arch/m68k/Makefile Masahiro Yamada
2015-03-28 18:09   ` [U-Boot] [U-Boot, " Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.