All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/7] avr32: remove non-generic boards
@ 2015-05-11 11:07 Andreas Bießmann
  2015-05-11 11:07 ` [U-Boot] [PATCH 1/7] avr32: delete non generic board atngw100 Andreas Bießmann
                   ` (7 more replies)
  0 siblings, 8 replies; 21+ messages in thread
From: Andreas Bießmann @ 2015-05-11 11:07 UTC (permalink / raw)
  To: u-boot


This series deletes avr32-boards that are still using the ancient
arch/avr32/lib/board.c code. If one would like his board to stay in u-boot
there is a last chance to convert it to generic board _now_. It should be as easy
as defining these three values in the board config:

|/* generic board */
|#define CONFIG_SYS_GENERIC_BOARD
|#define CONFIG_BOARD_EARLY_INIT_F
|#define CONFIG_BOARD_EARLY_INIT_R


The patch 'avr32: delete non generic board favr-32-ezkit' has an checkpatch
warning which will not be fixed.

---8<---
0 errors, 1 warnings, 0 checks for 0002-avr32-delete-non-generic-board-favr-32-ezkit.patch:
warning: arch/avr32/Kconfig,22: please write a paragraph that describes the config symbol fully
--->8---


The patch 'avr32: delete non generic board's atstk100{3,4,6}' has a checkpatch
warning wich will not be fixed.

---8<---
0 errors, 1 warnings, 0 checks for 0005-avr32-delete-non-generic-board-s-atstk100-3-4-6.patch:
warning: arch/avr32/Kconfig,13: please write a paragraph that describes the config symbol fully
--->8---



Andreas Bie?mann (7):
  avr32: delete non generic board atngw100
  avr32: delete non generic board favr-32-ezkit
  avr32: delete non generic board hammerhead
  avr32: delete non generic board mimc200
  avr32: delete non generic board's atstk100{3,4,6}
  avr32: take maintainership for atstk1002
  avr32: delete ancient board.c

 arch/avr32/Kconfig                           |  25 ---
 arch/avr32/lib/Makefile                      |   3 -
 arch/avr32/lib/board.c                       | 256 ---------------------------
 board/atmel/atngw100/Kconfig                 |  15 --
 board/atmel/atngw100/MAINTAINERS             |   6 -
 board/atmel/atngw100/Makefile                |   6 -
 board/atmel/atngw100/atngw100.c              | 109 ------------
 board/atmel/atstk1000/Kconfig                |  48 -----
 board/atmel/atstk1000/MAINTAINERS            |  10 +-
 board/atmel/atstk1000/atstk1000.c            |  23 +--
 board/earthlcd/favr-32-ezkit/Kconfig         |  15 --
 board/earthlcd/favr-32-ezkit/MAINTAINERS     |   6 -
 board/earthlcd/favr-32-ezkit/Makefile        |   9 -
 board/earthlcd/favr-32-ezkit/favr-32-ezkit.c |  81 ---------
 board/earthlcd/favr-32-ezkit/flash.c         | 216 ----------------------
 board/mimc/mimc200/Kconfig                   |  15 --
 board/mimc/mimc200/MAINTAINERS               |   6 -
 board/mimc/mimc200/Makefile                  |   6 -
 board/mimc/mimc200/mimc200.c                 | 197 ---------------------
 board/miromico/hammerhead/Kconfig            |  15 --
 board/miromico/hammerhead/MAINTAINERS        |   6 -
 board/miromico/hammerhead/Makefile           |   6 -
 board/miromico/hammerhead/hammerhead.c       |  91 ----------
 configs/atngw100_defconfig                   |   2 -
 configs/atstk1003_defconfig                  |   2 -
 configs/atstk1004_defconfig                  |   2 -
 configs/atstk1006_defconfig                  |   2 -
 configs/favr-32-ezkit_defconfig              |   2 -
 configs/hammerhead_defconfig                 |   2 -
 configs/mimc200_defconfig                    |   2 -
 include/configs/atngw100.h                   | 163 -----------------
 include/configs/atstk1003.h                  | 161 -----------------
 include/configs/atstk1004.h                  | 161 -----------------
 include/configs/atstk1006.h                  | 178 -------------------
 include/configs/favr-32-ezkit.h              | 181 -------------------
 include/configs/hammerhead.h                 | 157 ----------------
 include/configs/mimc200.h                    | 177 ------------------
 37 files changed, 3 insertions(+), 2359 deletions(-)
 delete mode 100644 arch/avr32/lib/board.c
 delete mode 100644 board/atmel/atngw100/Kconfig
 delete mode 100644 board/atmel/atngw100/MAINTAINERS
 delete mode 100644 board/atmel/atngw100/Makefile
 delete mode 100644 board/atmel/atngw100/atngw100.c
 delete mode 100644 board/earthlcd/favr-32-ezkit/Kconfig
 delete mode 100644 board/earthlcd/favr-32-ezkit/MAINTAINERS
 delete mode 100644 board/earthlcd/favr-32-ezkit/Makefile
 delete mode 100644 board/earthlcd/favr-32-ezkit/favr-32-ezkit.c
 delete mode 100644 board/earthlcd/favr-32-ezkit/flash.c
 delete mode 100644 board/mimc/mimc200/Kconfig
 delete mode 100644 board/mimc/mimc200/MAINTAINERS
 delete mode 100644 board/mimc/mimc200/Makefile
 delete mode 100644 board/mimc/mimc200/mimc200.c
 delete mode 100644 board/miromico/hammerhead/Kconfig
 delete mode 100644 board/miromico/hammerhead/MAINTAINERS
 delete mode 100644 board/miromico/hammerhead/Makefile
 delete mode 100644 board/miromico/hammerhead/hammerhead.c
 delete mode 100644 configs/atngw100_defconfig
 delete mode 100644 configs/atstk1003_defconfig
 delete mode 100644 configs/atstk1004_defconfig
 delete mode 100644 configs/atstk1006_defconfig
 delete mode 100644 configs/favr-32-ezkit_defconfig
 delete mode 100644 configs/hammerhead_defconfig
 delete mode 100644 configs/mimc200_defconfig
 delete mode 100644 include/configs/atngw100.h
 delete mode 100644 include/configs/atstk1003.h
 delete mode 100644 include/configs/atstk1004.h
 delete mode 100644 include/configs/atstk1006.h
 delete mode 100644 include/configs/favr-32-ezkit.h
 delete mode 100644 include/configs/hammerhead.h
 delete mode 100644 include/configs/mimc200.h

-- 
2.1.4

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

end of thread, other threads:[~2015-06-10 12:09 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-11 11:07 [U-Boot] [PATCH 0/7] avr32: remove non-generic boards Andreas Bießmann
2015-05-11 11:07 ` [U-Boot] [PATCH 1/7] avr32: delete non generic board atngw100 Andreas Bießmann
2015-05-11 11:07 ` [U-Boot] [PATCH 2/7] avr32: delete non generic board favr-32-ezkit Andreas Bießmann
2015-06-10 12:08   ` [U-Boot] [U-Boot,2/7] " Andreas Bießmann
2015-05-11 11:07 ` [U-Boot] [PATCH 3/7] avr32: delete non generic board hammerhead Andreas Bießmann
2015-06-10 12:08   ` [U-Boot] [U-Boot,3/7] " Andreas Bießmann
2015-05-11 11:07 ` [U-Boot] [PATCH 4/7] avr32: delete non generic board mimc200 Andreas Bießmann
2015-06-10 12:09   ` [U-Boot] [U-Boot,4/7] " Andreas Bießmann
2015-05-11 11:07 ` [U-Boot] [PATCH 5/7] avr32: delete non generic board's atstk100{3, 4, 6} Andreas Bießmann
2015-06-10 12:09   ` [U-Boot] [U-Boot,5/7] " Andreas Bießmann
2015-05-11 11:07 ` [U-Boot] [PATCH 6/7] avr32: take maintainership for atstk1002 Andreas Bießmann
2015-06-10 12:09   ` [U-Boot] [U-Boot,6/7] " Andreas Bießmann
2015-05-11 11:07 ` [U-Boot] [PATCH 7/7] avr32: delete ancient board.c Andreas Bießmann
2015-06-10 12:09   ` [U-Boot] [U-Boot,7/7] " Andreas Bießmann
2015-05-11 11:19 ` [U-Boot] [PATCH 0/7] avr32: remove non-generic boards Hans-Christian Egtvedt
2015-05-11 11:29   ` Andreas Bießmann
2015-05-11 11:32     ` Waldemar Brodkorb
2015-05-11 11:56       ` Andreas Bießmann
2015-05-13  7:18       ` Andreas Bießmann
2015-05-17  9:03         ` Waldemar Brodkorb
2015-05-17  9:35           ` Andreas Bießmann

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.