From: Bartosz Golaszewski <brgl@bgdev.pl>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 0/8] davinci: remove older unmaintained boards
Date: Fri, 17 May 2019 11:17:12 +0200 [thread overview]
Message-ID: <20190517091720.17381-1-brgl@bgdev.pl> (raw)
From: Bartosz Golaszewski <bgolaszewski@baylibre.com>
I'm working on updating the driver-model support for da850-lcdk and
da850-evm. There are several boards in the tree that don't use the
driver model but depend on DaVinci drivers. Since supporting both
legacy and DM in driver code makes it messy, I'd like to propose to
remove the following boards: calimain, ea20, eco5pk, ipam390, cm_t3517,
mt_ventoux, twister and mcx.
They don't seem to still be maintained, don't use device-tree and don't
select CONFIG_DM.
Bartosz Golaszewski (8):
calimain: remove board
ea20: remove board
eco5pk: remove board
ipam390: remove board
cm_t3517: remove board
mt_ventoux: remove board
twister: remove board
mcx: remove board
arch/arm/include/asm/mach-types.h | 6 -
arch/arm/mach-davinci/Kconfig | 19 -
arch/arm/mach-omap2/omap3/Kconfig | 31 --
board/8dtech/eco5pk/Kconfig | 12 -
board/8dtech/eco5pk/MAINTAINERS | 6 -
board/8dtech/eco5pk/Makefile | 8 -
board/8dtech/eco5pk/eco5pk.c | 48 ---
board/8dtech/eco5pk/eco5pk.h | 391 --------------------
board/Barix/ipam390/Kconfig | 12 -
board/Barix/ipam390/MAINTAINERS | 6 -
board/Barix/ipam390/Makefile | 8 -
board/Barix/ipam390/README.ipam390 | 229 ------------
board/Barix/ipam390/ipam390-ais-uart.cfg | 202 -----------
board/Barix/ipam390/ipam390.c | 335 -----------------
board/Barix/ipam390/u-boot-spl-ipam390.lds | 57 ---
board/compulab/cm_t3517/Kconfig | 12 -
board/compulab/cm_t3517/MAINTAINERS | 6 -
board/compulab/cm_t3517/Makefile | 7 -
board/compulab/cm_t3517/cm_t3517.c | 240 ------------
board/compulab/cm_t3517/mux.c | 235 ------------
board/compulab/common/eeprom.c | 2 +-
board/davinci/ea20/Kconfig | 12 -
board/davinci/ea20/MAINTAINERS | 6 -
board/davinci/ea20/Makefile | 8 -
board/davinci/ea20/ea20.c | 337 -----------------
board/htkw/mcx/Kconfig | 12 -
board/htkw/mcx/MAINTAINERS | 6 -
board/htkw/mcx/Makefile | 7 -
board/htkw/mcx/mcx.c | 141 -------
board/htkw/mcx/mcx.h | 400 --------------------
board/omicron/calimain/Kconfig | 12 -
board/omicron/calimain/MAINTAINERS | 7 -
board/omicron/calimain/Makefile | 8 -
board/omicron/calimain/calimain.c | 145 --------
board/technexion/twister/Kconfig | 12 -
board/technexion/twister/MAINTAINERS | 6 -
board/technexion/twister/Makefile | 7 -
board/technexion/twister/twister.c | 160 --------
board/technexion/twister/twister.h | 400 --------------------
board/teejet/mt_ventoux/Kconfig | 12 -
board/teejet/mt_ventoux/MAINTAINERS | 6 -
board/teejet/mt_ventoux/Makefile | 7 -
board/teejet/mt_ventoux/mt_ventoux.c | 342 -----------------
board/teejet/mt_ventoux/mt_ventoux.h | 403 ---------------------
configs/calimain_defconfig | 37 --
configs/cm_t3517_defconfig | 60 ---
configs/ea20_defconfig | 48 ---
configs/eco5pk_defconfig | 45 ---
configs/ipam390_defconfig | 45 ---
configs/mcx_defconfig | 58 ---
configs/mt_ventoux_defconfig | 54 ---
configs/twister_defconfig | 52 ---
include/configs/calimain.h | 272 --------------
include/configs/cm_t3517.h | 219 -----------
include/configs/ea20.h | 227 ------------
include/configs/eco5pk.h | 45 ---
include/configs/ipam390.h | 237 ------------
include/configs/mcx.h | 294 ---------------
include/configs/mt_ventoux.h | 46 ---
include/configs/twister.h | 34 --
scripts/config_whitelist.txt | 1 -
61 files changed, 1 insertion(+), 6101 deletions(-)
delete mode 100644 board/8dtech/eco5pk/Kconfig
delete mode 100644 board/8dtech/eco5pk/MAINTAINERS
delete mode 100644 board/8dtech/eco5pk/Makefile
delete mode 100644 board/8dtech/eco5pk/eco5pk.c
delete mode 100644 board/8dtech/eco5pk/eco5pk.h
delete mode 100644 board/Barix/ipam390/Kconfig
delete mode 100644 board/Barix/ipam390/MAINTAINERS
delete mode 100644 board/Barix/ipam390/Makefile
delete mode 100644 board/Barix/ipam390/README.ipam390
delete mode 100644 board/Barix/ipam390/ipam390-ais-uart.cfg
delete mode 100644 board/Barix/ipam390/ipam390.c
delete mode 100644 board/Barix/ipam390/u-boot-spl-ipam390.lds
delete mode 100644 board/compulab/cm_t3517/Kconfig
delete mode 100644 board/compulab/cm_t3517/MAINTAINERS
delete mode 100644 board/compulab/cm_t3517/Makefile
delete mode 100644 board/compulab/cm_t3517/cm_t3517.c
delete mode 100644 board/compulab/cm_t3517/mux.c
delete mode 100644 board/davinci/ea20/Kconfig
delete mode 100644 board/davinci/ea20/MAINTAINERS
delete mode 100644 board/davinci/ea20/Makefile
delete mode 100644 board/davinci/ea20/ea20.c
delete mode 100644 board/htkw/mcx/Kconfig
delete mode 100644 board/htkw/mcx/MAINTAINERS
delete mode 100644 board/htkw/mcx/Makefile
delete mode 100644 board/htkw/mcx/mcx.c
delete mode 100644 board/htkw/mcx/mcx.h
delete mode 100644 board/omicron/calimain/Kconfig
delete mode 100644 board/omicron/calimain/MAINTAINERS
delete mode 100644 board/omicron/calimain/Makefile
delete mode 100644 board/omicron/calimain/calimain.c
delete mode 100644 board/technexion/twister/Kconfig
delete mode 100644 board/technexion/twister/MAINTAINERS
delete mode 100644 board/technexion/twister/Makefile
delete mode 100644 board/technexion/twister/twister.c
delete mode 100644 board/technexion/twister/twister.h
delete mode 100644 board/teejet/mt_ventoux/Kconfig
delete mode 100644 board/teejet/mt_ventoux/MAINTAINERS
delete mode 100644 board/teejet/mt_ventoux/Makefile
delete mode 100644 board/teejet/mt_ventoux/mt_ventoux.c
delete mode 100644 board/teejet/mt_ventoux/mt_ventoux.h
delete mode 100644 configs/calimain_defconfig
delete mode 100644 configs/cm_t3517_defconfig
delete mode 100644 configs/ea20_defconfig
delete mode 100644 configs/eco5pk_defconfig
delete mode 100644 configs/ipam390_defconfig
delete mode 100644 configs/mcx_defconfig
delete mode 100644 configs/mt_ventoux_defconfig
delete mode 100644 configs/twister_defconfig
delete mode 100644 include/configs/calimain.h
delete mode 100644 include/configs/cm_t3517.h
delete mode 100644 include/configs/ea20.h
delete mode 100644 include/configs/eco5pk.h
delete mode 100644 include/configs/ipam390.h
delete mode 100644 include/configs/mcx.h
delete mode 100644 include/configs/mt_ventoux.h
delete mode 100644 include/configs/twister.h
--
2.21.0
next reply other threads:[~2019-05-17 9:17 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-17 9:17 Bartosz Golaszewski [this message]
2019-05-17 9:17 ` [U-Boot] [PATCH 1/8] calimain: remove board Bartosz Golaszewski
2019-05-29 17:17 ` Tom Rini
2019-05-17 9:17 ` [U-Boot] [PATCH 2/8] ea20: " Bartosz Golaszewski
2019-05-17 10:09 ` Stefano Babic
2019-05-29 17:17 ` Tom Rini
2019-05-17 9:17 ` [U-Boot] [PATCH 3/8] eco5pk: " Bartosz Golaszewski
2019-05-29 17:17 ` Tom Rini
2019-05-17 9:17 ` [U-Boot] [PATCH 4/8] ipam390: " Bartosz Golaszewski
2019-05-20 5:13 ` Heiko Schocher
2019-05-29 17:17 ` Tom Rini
2019-05-17 9:17 ` [U-Boot] [PATCH 5/8] cm_t3517: " Bartosz Golaszewski
2019-05-29 17:17 ` Tom Rini
2019-05-17 9:17 ` [U-Boot] [PATCH 6/8] mt_ventoux: " Bartosz Golaszewski
2019-05-17 10:08 ` Stefano Babic
2019-05-29 17:17 ` Tom Rini
2019-05-17 9:17 ` [U-Boot] [PATCH 7/8] twister: " Bartosz Golaszewski
2019-05-17 10:08 ` Stefano Babic
2019-05-29 17:17 ` Tom Rini
2019-05-17 9:17 ` [U-Boot] [PATCH 8/8] mcx: " Bartosz Golaszewski
2019-05-28 20:34 ` Anatolij Gustschin
2019-05-29 17:17 ` Tom Rini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190517091720.17381-1-brgl@bgdev.pl \
--to=brgl@bgdev.pl \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox