public inbox for linux-arm-kernel@lists.infradead.org 
 help / color / mirror / Atom feed
From: plagnioj@jcrosoft•com (Jean-Christophe PLAGNIOL-VILLARD)
To: linux-arm-kernel@lists•infradead.org
Subject: [PATCH 07/12] ARM: move all dtb targets out of Makefile.boot
Date: Tue, 11 Sep 2012 06:49:07 +0200	[thread overview]
Message-ID: <20120911044907.GF31430@game.jcrosoft.org> (raw)
In-Reply-To: <504E28B0.5040404@gmail.com>

On 12:51 Mon 10 Sep     , Rob Herring wrote:
> On 09/10/2012 10:52 AM, Jean-Christophe PLAGNIOL-VILLARD wrote:
> > On 15:12 Thu 06 Sep     , Rob Herring wrote:
> >> From: Rob Herring <rob.herring@calxeda•com>
> >>
> >> In preparation to support multi-platform kernels, move all the dtb targets
> >> out of the mach Makefile.boot and into the arch/arm/boot/dts/Makefile
> >> which is closer to the sources.
> >>
> >> Signed-off-by: Rob Herring <rob.herring@calxeda•com>
> >> Cc: Russell King <linux@arm•linux.org.uk>
> >> Cc: Andrew Victor <linux@maxim•org.za>
> >> Cc: Nicolas Ferre <nicolas.ferre@atmel•com>
> >> Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft•com>
> >> Cc: Kukjin Kim <kgene.kim@samsung•com>
> >> Cc: Sascha Hauer <kernel@pengutronix•de>
> >> Cc: Jason Cooper <jason@lakedaemon•net>
> >> Cc: Andrew Lunn <andrew@lunn•ch>
> >> Cc: Gregory Clement <gregory.clement@free-electrons•com>
> >> Cc: Shawn Guo <shawn.guo@linaro•org>
> >> Cc: Viresh Kumar <viresh.linux@gmail•com>
> >> Cc: Shiraz Hashim <shiraz.hashim@st•com>
> >> Cc: Rajeev Kumar <rajeev-dlh.kumar@st•com>
> >> Cc: Stephen Warren <swarren@wwwdotorg•org>
> >> Cc: Srinidhi Kasagar <srinidhi.kasagar@stericsson•com>
> >> Cc: Linus Walleij <linus.walleij@linaro•org>
> >> ---
> >>  arch/arm/boot/Makefile                |    2 ++
> >>  arch/arm/boot/dts/Makefile            |   41 +++++++++++++++++++++++++++++++++
> >>  arch/arm/mach-at91/Makefile.boot      |   24 -------------------
> >>  arch/arm/mach-exynos/Makefile.boot    |    3 ---
> >>  arch/arm/mach-imx/Makefile.boot       |    7 ------
> >>  arch/arm/mach-kirkwood/Makefile.boot  |   11 ---------
> >>  arch/arm/mach-lpc32xx/Makefile.boot   |    2 --
> >>  arch/arm/mach-mvebu/Makefile.boot     |    2 --
> >>  arch/arm/mach-mxs/Makefile.boot       |    9 --------
> >>  arch/arm/mach-spear13xx/Makefile.boot |    3 ---
> >>  arch/arm/mach-spear3xx/Makefile.boot  |    4 ----
> >>  arch/arm/mach-spear6xx/Makefile.boot  |    2 --
> >>  arch/arm/mach-tegra/Makefile.boot     |    8 -------
> >>  arch/arm/mach-ux500/Makefile.boot     |    2 --
> >>  arch/arm/mach-vexpress/Makefile.boot  |    5 ----
> >>  15 files changed, 43 insertions(+), 82 deletions(-)
> >>  create mode 100644 arch/arm/boot/dts/Makefile
> >>
> >> diff --git a/arch/arm/boot/Makefile b/arch/arm/boot/Makefile
> >> index c877087..3fdab01 100644
> >> --- a/arch/arm/boot/Makefile
> >> +++ b/arch/arm/boot/Makefile
> >> @@ -15,6 +15,8 @@ ifneq ($(MACHINE),)
> >>  include $(srctree)/$(MACHINE)/Makefile.boot
> >>  endif
> >>  
> >> +include $(srctree)/arch/arm/boot/dts/Makefile
> >> +
> >>  # Note: the following conditions must always be true:
> >>  #   ZRELADDR == virt_to_phys(PAGE_OFFSET + TEXT_OFFSET)
> >>  #   PARAMS_PHYS must be within 4MB of ZRELADDR
> >> diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile
> >> new file mode 100644
> >> index 0000000..e59586b
> >> --- /dev/null
> >> +++ b/arch/arm/boot/dts/Makefile
> >> @@ -0,0 +1,41 @@
> >> +dtb-$(CONFIG_ARCH_HIGHBANK) += highbank.dtb
> > sorry I see no need of the dtb-y
> > 
> > just do all the time
> 
> That's not how it works today. dtb's only for all enabled platforms are
> built. Changing the behavior should be a different patch.
no I see no point to check if the platform is enable or not just build all

This will allow to check them

Best Regards,
J.

  reply	other threads:[~2012-09-11  4:49 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-06 20:12 [PATCH v3 00/12] Initial multi-platform support Rob Herring
2012-09-06 20:12 ` [PATCH 01/12] ARM: move debug macros to common location Rob Herring
2012-09-06 20:12 ` [PATCH 02/12] ARM: highbank: move debug macros to include/debug Rob Herring
2012-09-06 20:12 ` [PATCH 03/12] ARM: vexpress: " Rob Herring
2012-09-06 20:12 ` [PATCH 04/12] ARM: mvebu: " Rob Herring
2012-09-07 15:08   ` Jason Cooper
2012-09-06 20:12 ` [PATCH 05/12] ARM: socfpga: " Rob Herring
2012-09-06 22:33   ` Dinh Nguyen
2012-09-06 23:35   ` Dinh Nguyen
2012-09-06 20:12 ` [PATCH 06/12] ARM: picoxcell: " Rob Herring
2012-09-13 14:16   ` Shawn Guo
2012-09-13 15:14     ` Rob Herring
2012-09-06 20:12 ` [PATCH 07/12] ARM: move all dtb targets out of Makefile.boot Rob Herring
2012-09-07  2:27   ` Shawn Guo
2012-09-07  2:36     ` Stephen Warren
2012-09-07  2:39       ` Shawn Guo
2012-09-11 12:02         ` Rob Herring
2012-09-11 12:06           ` Shawn Guo
2012-09-07  5:19       ` Andrew Lunn
2012-09-07 12:51         ` Rob Herring
2012-09-07 13:25           ` Arnd Bergmann
2012-09-07 13:46             ` Rob Herring
2012-09-10 15:52   ` Jean-Christophe PLAGNIOL-VILLARD
2012-09-10 17:51     ` Rob Herring
2012-09-11  4:49       ` Jean-Christophe PLAGNIOL-VILLARD [this message]
2012-09-11  5:41         ` Stephen Warren
2012-09-11 13:25           ` Jean-Christophe PLAGNIOL-VILLARD
2012-09-11 16:04             ` Rob Herring
2012-09-11 18:51             ` Nicolas Pitre
2012-09-11 18:08   ` [PATCH v2] " Rob Herring
2012-09-11 18:43     ` Stephen Warren
2012-09-06 20:12 ` [PATCH 08/12] ARM: picoxcell: remove dependency on mach/* headers Rob Herring
2012-09-06 20:12 ` [PATCH 09/12] ARM: vexpress: " Rob Herring
2012-09-06 20:12 ` [PATCH 10/12] ARM: mvebu: move armada-370-xp.h in mach dir Rob Herring
2012-09-07 15:11   ` Jason Cooper
2012-09-06 20:12 ` [PATCH 11/12] ARM: initial multiplatform support Rob Herring
2012-09-12 19:49   ` Arnd Bergmann
2012-09-12 20:20     ` Rob Herring
2012-09-12 20:27       ` Arnd Bergmann
2012-09-13 14:12   ` Shawn Guo
2012-09-06 20:12 ` [PATCH 12/12] ARM: vexpress: convert to multi-platform Rob Herring
2012-09-10 19:07 ` [PATCH v3 00/12] Initial multi-platform support Jamie Iles
2012-09-14  0:58   ` Shawn Guo
2012-09-14 13:00     ` Rob Herring

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=20120911044907.GF31430@game.jcrosoft.org \
    --to=plagnioj@jcrosoft$(echo .)com \
    --cc=linux-arm-kernel@lists$(echo .)infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
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