From: Robert Richter <rric@kernel.org>
To: Olof Johansson <olof@lixom.net>, Arnd Bergmann <arnd@arndb.de>
Cc: Catalin Marinas <catalin.marinas@arm.com>,
Andrew Bresticker <abrestic@google.com>,
Michal Marek <mmarek@suse.cz>,
Mark Rutland <Mark.Rutland@arm.com>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"linux-kbuild@vger.kernel.org" <linux-kbuild@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
Robert Richter <rrichter@cavium.com>,
Rob Herring <robh+dt@kernel.org>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>
Subject: [GIT PULL] dts, kbuild: Implement support for dtb vendor subdirs
Date: Thu, 2 Oct 2014 17:08:04 +0200 [thread overview]
Message-ID: <20141002150804.GP20170@rric.localhost> (raw)
In-Reply-To: <20140923112619.GG20170@rric.localhost>
On 23.09.14 13:26:19, Robert Richter wrote:
> On 19.09.14 15:08:56, Catalin Marinas wrote:
> > On Fri, Sep 19, 2014 at 01:30:56PM +0100, Robert Richter wrote:
> > > On 16.09.14 20:49:18, Andrew Bresticker wrote:
> > > > > Robert Richter (6):
> > > > > dts, arm64: Add dtbs_install make target
> > > > > dts, kbuild: Factor out dtbs install rules to Makefile.dtbinst
> > > > > dts, arm/arm64: Remove dtbs build rules in sub-makes
> > > > > dts, kbuild: Implement support for dtb vendor subdirs
> > > > > dts, arm64: Move dts files to vendor subdirs
> > > > > dts, arm: Remove $(MACHINE) variable from dtbs make recipes
> > > >
> > > > I've tested this for arm64 and by adding a vendor sub-directory
> > > > locally for arm. This series is also the base for my MIPS DT vendor
> > > > sub-directory series
> > > > (http://www.linux-mips.org/archives/linux-mips/2014-09/msg00217.html).
> > > > So, for the entire series,
> > > >
> > > > Tested-by: Andrew Bresticker <abrestic@chromium.org>
> > >
> > > Andrew, thanks for testing and great this also works on mips.
> > >
> > > Anyone willing to take the patches for 3.18? Are any further acks
> > > needed?
> >
> > For the arm64 bits in this series:
> >
> > Acked-by: Catalin Marinas <catalin.marinas@arm.com>
> >
> > I think the patches can be merged via arm-soc.
>
> Olof,
>
> please apply the patches.
Olof, Arnd,
you may want to pull from here alternatively.
Thanks,
-Robert
The following changes since commit a497c3ba1d97fc69c1e78e7b96435ba8c2cb42ee:
Linux 3.16-rc2 (2014-06-21 19:02:54 -1000)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/rric/linux.git tags/dts-subdirs-for-arm-soc-v3.18
for you to fetch changes up to 87bdf4d8625e50d99b56aa2590a2261049a5fd48:
dts, arm: Remove $(MACHINE) variable from dtbs make recipes (2014-09-03 21:46:49 +0200)
----------------------------------------------------------------
dts, kbuild: Implement support for dtb vendor subdirs
----------------------------------------------------------------
Robert Richter (6):
dts, arm64: Add dtbs_install make target
dts, kbuild: Factor out dtbs install rules to Makefile.dtbinst
dts, arm/arm64: Remove dtbs build rules in sub-makes
dts, kbuild: Implement support for dtb vendor subdirs
dts, arm64: Move dts files to vendor subdirs
dts, arm: Remove $(MACHINE) variable from dtbs make recipes
arch/arm/Makefile | 8 +++-
arch/arm/boot/dts/Makefile | 12 +-----
arch/arm64/Makefile | 10 ++++-
arch/arm64/boot/dts/Makefile | 13 +++---
arch/arm64/boot/dts/apm/Makefile | 5 +++
arch/arm64/boot/dts/{ => apm}/apm-mustang.dts | 0
arch/arm64/boot/dts/{ => apm}/apm-storm.dtsi | 0
arch/arm64/boot/dts/arm/Makefile | 6 +++
arch/arm64/boot/dts/{ => arm}/foundation-v8.dts | 0
arch/arm64/boot/dts/{ => arm}/rtsm_ve-aemv8a.dts | 0
.../boot/dts/{ => arm}/rtsm_ve-motherboard.dtsi | 0
scripts/Kbuild.include | 6 +++
scripts/Makefile.dtbinst | 50 ++++++++++++++++++++++
scripts/Makefile.lib | 12 ------
14 files changed, 88 insertions(+), 34 deletions(-)
create mode 100644 arch/arm64/boot/dts/apm/Makefile
rename arch/arm64/boot/dts/{ => apm}/apm-mustang.dts (100%)
rename arch/arm64/boot/dts/{ => apm}/apm-storm.dtsi (100%)
create mode 100644 arch/arm64/boot/dts/arm/Makefile
rename arch/arm64/boot/dts/{ => arm}/foundation-v8.dts (100%)
rename arch/arm64/boot/dts/{ => arm}/rtsm_ve-aemv8a.dts (100%)
rename arch/arm64/boot/dts/{ => arm}/rtsm_ve-motherboard.dtsi (100%)
create mode 100644 scripts/Makefile.dtbinst
WARNING: multiple messages have this Message-ID (diff)
From: rric@kernel.org (Robert Richter)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL] dts, kbuild: Implement support for dtb vendor subdirs
Date: Thu, 2 Oct 2014 17:08:04 +0200 [thread overview]
Message-ID: <20141002150804.GP20170@rric.localhost> (raw)
In-Reply-To: <20140923112619.GG20170@rric.localhost>
On 23.09.14 13:26:19, Robert Richter wrote:
> On 19.09.14 15:08:56, Catalin Marinas wrote:
> > On Fri, Sep 19, 2014 at 01:30:56PM +0100, Robert Richter wrote:
> > > On 16.09.14 20:49:18, Andrew Bresticker wrote:
> > > > > Robert Richter (6):
> > > > > dts, arm64: Add dtbs_install make target
> > > > > dts, kbuild: Factor out dtbs install rules to Makefile.dtbinst
> > > > > dts, arm/arm64: Remove dtbs build rules in sub-makes
> > > > > dts, kbuild: Implement support for dtb vendor subdirs
> > > > > dts, arm64: Move dts files to vendor subdirs
> > > > > dts, arm: Remove $(MACHINE) variable from dtbs make recipes
> > > >
> > > > I've tested this for arm64 and by adding a vendor sub-directory
> > > > locally for arm. This series is also the base for my MIPS DT vendor
> > > > sub-directory series
> > > > (http://www.linux-mips.org/archives/linux-mips/2014-09/msg00217.html).
> > > > So, for the entire series,
> > > >
> > > > Tested-by: Andrew Bresticker <abrestic@chromium.org>
> > >
> > > Andrew, thanks for testing and great this also works on mips.
> > >
> > > Anyone willing to take the patches for 3.18? Are any further acks
> > > needed?
> >
> > For the arm64 bits in this series:
> >
> > Acked-by: Catalin Marinas <catalin.marinas@arm.com>
> >
> > I think the patches can be merged via arm-soc.
>
> Olof,
>
> please apply the patches.
Olof, Arnd,
you may want to pull from here alternatively.
Thanks,
-Robert
The following changes since commit a497c3ba1d97fc69c1e78e7b96435ba8c2cb42ee:
Linux 3.16-rc2 (2014-06-21 19:02:54 -1000)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/rric/linux.git tags/dts-subdirs-for-arm-soc-v3.18
for you to fetch changes up to 87bdf4d8625e50d99b56aa2590a2261049a5fd48:
dts, arm: Remove $(MACHINE) variable from dtbs make recipes (2014-09-03 21:46:49 +0200)
----------------------------------------------------------------
dts, kbuild: Implement support for dtb vendor subdirs
----------------------------------------------------------------
Robert Richter (6):
dts, arm64: Add dtbs_install make target
dts, kbuild: Factor out dtbs install rules to Makefile.dtbinst
dts, arm/arm64: Remove dtbs build rules in sub-makes
dts, kbuild: Implement support for dtb vendor subdirs
dts, arm64: Move dts files to vendor subdirs
dts, arm: Remove $(MACHINE) variable from dtbs make recipes
arch/arm/Makefile | 8 +++-
arch/arm/boot/dts/Makefile | 12 +-----
arch/arm64/Makefile | 10 ++++-
arch/arm64/boot/dts/Makefile | 13 +++---
arch/arm64/boot/dts/apm/Makefile | 5 +++
arch/arm64/boot/dts/{ => apm}/apm-mustang.dts | 0
arch/arm64/boot/dts/{ => apm}/apm-storm.dtsi | 0
arch/arm64/boot/dts/arm/Makefile | 6 +++
arch/arm64/boot/dts/{ => arm}/foundation-v8.dts | 0
arch/arm64/boot/dts/{ => arm}/rtsm_ve-aemv8a.dts | 0
.../boot/dts/{ => arm}/rtsm_ve-motherboard.dtsi | 0
scripts/Kbuild.include | 6 +++
scripts/Makefile.dtbinst | 50 ++++++++++++++++++++++
scripts/Makefile.lib | 12 ------
14 files changed, 88 insertions(+), 34 deletions(-)
create mode 100644 arch/arm64/boot/dts/apm/Makefile
rename arch/arm64/boot/dts/{ => apm}/apm-mustang.dts (100%)
rename arch/arm64/boot/dts/{ => apm}/apm-storm.dtsi (100%)
create mode 100644 arch/arm64/boot/dts/arm/Makefile
rename arch/arm64/boot/dts/{ => arm}/foundation-v8.dts (100%)
rename arch/arm64/boot/dts/{ => arm}/rtsm_ve-aemv8a.dts (100%)
rename arch/arm64/boot/dts/{ => arm}/rtsm_ve-motherboard.dtsi (100%)
create mode 100644 scripts/Makefile.dtbinst
next prev parent reply other threads:[~2014-10-02 15:08 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-05 6:48 [PATCH 0/6] dts, kbuild: Implement support for dtb vendor subdirs Robert Richter
2014-09-05 6:48 ` Robert Richter
2014-09-05 6:48 ` [PATCH 1/6] dts, arm64: Add dtbs_install make target Robert Richter
2014-09-05 6:48 ` Robert Richter
2014-09-05 6:48 ` Robert Richter
2014-09-05 6:48 ` [PATCH 2/6] dts, kbuild: Factor out dtbs install rules to Makefile.dtbinst Robert Richter
2014-09-05 6:48 ` Robert Richter
2014-09-05 6:48 ` Robert Richter
2014-09-05 12:48 ` Rob Herring
2014-09-05 12:48 ` Rob Herring
2014-09-08 7:14 ` Robert Richter
2014-09-08 7:14 ` Robert Richter
2014-09-05 6:48 ` [PATCH 3/6] dts, arm/arm64: Remove dtbs build rules in sub-makes Robert Richter
2014-09-05 6:48 ` Robert Richter
2014-09-05 6:48 ` Robert Richter
2014-09-05 6:48 ` [PATCH 4/6] dts, kbuild: Implement support for dtb vendor subdirs Robert Richter
2014-09-05 6:48 ` Robert Richter
2014-09-05 6:48 ` [PATCH 5/6] dts, arm64: Move dts files to " Robert Richter
2014-09-05 6:48 ` Robert Richter
2014-09-05 12:46 ` Rob Herring
2014-09-05 12:46 ` Rob Herring
2014-09-05 6:48 ` [PATCH 6/6] dts, arm: Remove $(MACHINE) variable from dtbs make recipes Robert Richter
2014-09-05 6:48 ` Robert Richter
2014-09-17 3:49 ` [PATCH 0/6] dts, kbuild: Implement support for dtb vendor subdirs Andrew Bresticker
2014-09-17 3:49 ` Andrew Bresticker
2014-09-19 12:30 ` Robert Richter
2014-09-19 12:30 ` Robert Richter
2014-09-19 14:08 ` Catalin Marinas
2014-09-19 14:08 ` Catalin Marinas
2014-09-19 14:08 ` Catalin Marinas
2014-09-23 11:26 ` Robert Richter
2014-09-23 11:26 ` Robert Richter
2014-10-02 15:08 ` Robert Richter [this message]
2014-10-02 15:08 ` [GIT PULL] " Robert Richter
2014-10-20 13:56 ` Abhilash Kesavan
2014-10-20 13:56 ` Abhilash Kesavan
2014-10-20 13:56 ` Abhilash Kesavan
2014-10-20 15:24 ` Robert Richter
2014-10-20 15:24 ` Robert Richter
2014-10-20 15:24 ` Robert Richter
2014-10-21 18:15 ` Robert Richter
2014-10-21 18:15 ` Robert Richter
2014-10-30 19:26 ` Robert Richter
2014-10-30 19:26 ` Robert Richter
2014-11-04 4:47 ` Olof Johansson
2014-11-04 4:47 ` Olof Johansson
2014-11-04 4:47 ` Olof Johansson
2014-11-04 15:49 ` Robert Richter
2014-11-04 15:49 ` Robert Richter
2014-11-04 15:49 ` Robert Richter
2014-11-04 15:49 ` Robert Richter
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=20141002150804.GP20170@rric.localhost \
--to=rric@kernel.org \
--cc=Mark.Rutland@arm.com \
--cc=abrestic@google.com \
--cc=arnd@arndb.de \
--cc=catalin.marinas@arm.com \
--cc=devicetree@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kbuild@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mmarek@suse.cz \
--cc=olof@lixom.net \
--cc=robh+dt@kernel.org \
--cc=rrichter@cavium.com \
/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 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.