mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Barebox List <barebox@lists.infradead.org>
Subject: [PATCH 00/16] ARM: mxs: full multi image support
Date: Wed, 18 Sep 2019 09:54:05 +0200	[thread overview]
Message-ID: <20190918075421.20456-1-s.hauer@pengutronix.de> (raw)

This series makes all i.MX23/28 boards multi image safe and consequently
merges the different board specific config files into a imx23_defconfig
and a imx28_defconfig. Compiling i.MX23 together with i.MX28 is not yet
possible though as distinguishing between both is still done with many
defines.

Sascha

Sascha Hauer (16):
  ARM: start: Allow to pass machine type as boarddata
  ARM: tx28: Pass and check machine type
  ARM: tx28: Make locally used function static
  ARM: duckbill: Check machine type in initcalls
  ARM: Freescale mx28evk: Check machine type in initcalls
  ARM: i.MX23 olinuxino: Check machine type in initcalls
  ARM: Crytalfonts cfa10036: Check machine type in initcalls
  ARM: i.MX23 Chumby: Check machine type in initcalls
  ARM: Freescale i.MX23 evk: Check machine type in initcalls
  ARM: mxs: cfa10036: Switch to multi image support
  ARM: mxs: imx23-evk: Switch to multi image support
  ARM: mxs: chumby: Switch to multi image support
  ARM: mxs: Move HAVE_PBL_MULTI_IMAGES up to ARCH
  ARM: mxs: Allow to compile all boards for a SoC together
  ARM: add common i.MX28 defconfig file
  ARM: add common i.MX23 defconfig file

 arch/arm/Kconfig                              |  1 +
 .../arm/boards/chumby_falconwing/falconwing.c |  7 ++
 arch/arm/boards/chumby_falconwing/lowlevel.c  |  5 +-
 .../boards/crystalfontz-cfa10036/cfa10036.c   |  7 ++
 .../boards/crystalfontz-cfa10036/lowlevel.c   |  5 +-
 arch/arm/boards/duckbill/board.c              |  6 ++
 arch/arm/boards/freescale-mx23-evk/lowlevel.c |  5 +-
 arch/arm/boards/freescale-mx23-evk/mx23-evk.c |  7 ++
 arch/arm/boards/freescale-mx28-evk/board.c    |  3 +
 .../boards/imx233-olinuxino/imx23-olinuxino.c |  8 ++
 arch/arm/boards/imx233-olinuxino/lowlevel.c   |  3 +-
 arch/arm/boards/karo-tx28/lowlevel.c          |  3 +-
 arch/arm/boards/karo-tx28/tx28-stk5.c         |  7 +-
 arch/arm/boards/karo-tx28/tx28.c              |  4 +
 arch/arm/configs/cfa10036_defconfig           | 38 --------
 arch/arm/configs/chumbyone_defconfig          | 46 ---------
 arch/arm/configs/freescale-mx23-evk_defconfig | 28 ------
 arch/arm/configs/freescale-mx28-evk_defconfig | 89 ------------------
 ...33-olinuxino_defconfig => imx23_defconfig} | 54 ++++++-----
 .../{duckbill_defconfig => imx28_defconfig}   | 20 ++++
 arch/arm/configs/tx28stk5_defconfig           | 94 -------------------
 arch/arm/cpu/start.c                          | 14 ++-
 arch/arm/mach-mxs/Kconfig                     | 14 ---
 images/Makefile.mxs                           | 12 +++
 24 files changed, 138 insertions(+), 342 deletions(-)
 delete mode 100644 arch/arm/configs/cfa10036_defconfig
 delete mode 100644 arch/arm/configs/chumbyone_defconfig
 delete mode 100644 arch/arm/configs/freescale-mx23-evk_defconfig
 delete mode 100644 arch/arm/configs/freescale-mx28-evk_defconfig
 rename arch/arm/configs/{imx233-olinuxino_defconfig => imx23_defconfig} (72%)
 rename arch/arm/configs/{duckbill_defconfig => imx28_defconfig} (82%)
 delete mode 100644 arch/arm/configs/tx28stk5_defconfig

-- 
2.23.0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

             reply	other threads:[~2019-09-18  7:54 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-18  7:54 Sascha Hauer [this message]
2019-09-18  7:54 ` [PATCH 01/16] ARM: start: Allow to pass machine type as boarddata Sascha Hauer
2019-09-18  7:54 ` [PATCH 02/16] ARM: tx28: Pass and check machine type Sascha Hauer
2019-09-18  7:54 ` [PATCH 03/16] ARM: tx28: Make locally used function static Sascha Hauer
2019-09-18  7:54 ` [PATCH 04/16] ARM: duckbill: Check machine type in initcalls Sascha Hauer
2019-09-18  7:54 ` [PATCH 05/16] ARM: Freescale mx28evk: " Sascha Hauer
2019-09-18  7:54 ` [PATCH 06/16] ARM: i.MX23 olinuxino: " Sascha Hauer
2019-09-18  7:54 ` [PATCH 07/16] ARM: Crytalfonts cfa10036: " Sascha Hauer
2019-09-18  7:54 ` [PATCH 08/16] ARM: i.MX23 Chumby: " Sascha Hauer
2019-09-18  7:54 ` [PATCH 09/16] ARM: Freescale i.MX23 evk: " Sascha Hauer
2019-09-18  7:54 ` [PATCH 10/16] ARM: mxs: cfa10036: Switch to multi image support Sascha Hauer
2019-09-18  7:54 ` [PATCH 11/16] ARM: mxs: imx23-evk: " Sascha Hauer
2019-09-18  7:54 ` [PATCH 12/16] ARM: mxs: chumby: " Sascha Hauer
2019-09-18  7:54 ` [PATCH 13/16] ARM: mxs: Move HAVE_PBL_MULTI_IMAGES up to ARCH Sascha Hauer
2019-09-18  7:54 ` [PATCH 14/16] ARM: mxs: Allow to compile all boards for a SoC together Sascha Hauer
2019-09-18  7:54 ` [PATCH 15/16] ARM: add common i.MX28 defconfig file Sascha Hauer
2019-09-18  7:54 ` [PATCH 16/16] ARM: add common i.MX23 " Sascha Hauer

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=20190918075421.20456-1-s.hauer@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    /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