* [PATCH v2 RESEND] ARM: Build dtb files in all target
@ 2012-09-03 16:58 Andrew Lunn
[not found] ` <1346691487-17534-1-git-send-email-andrew-g2DYL2Zd6BY@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Andrew Lunn @ 2012-09-03 16:58 UTC (permalink / raw)
To: linux-lFZ/pmaqli7XmaaqVzeoHQ
Cc: Andrew Lunn, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, linux ARM
Tools like kisskb are good at finding build regressions in the kernel
sources. However, regressions in the DT desscriptions are not found,
because generally these build systems don't build the DT binary blobs.
Extend the ARM all target to build all enabled DTB files.
Signed-off-by: Andrew Lunn <andrew-g2DYL2Zd6BY@public.gmane.org>
Acked-by: Jason Cooper <jason-NLaQJdtUoK4Be96aLqz0jA@public.gmane.org>
Reviewed-by: Dave Martin <dave.martin-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
---
arch/arm/Makefile | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/arch/arm/Makefile b/arch/arm/Makefile
index 30eae87..0457ef4 100644
--- a/arch/arm/Makefile
+++ b/arch/arm/Makefile
@@ -268,7 +268,12 @@ else
KBUILD_IMAGE := zImage
endif
-all: $(KBUILD_IMAGE)
+# Build the DT binary blobs if we have OF configured
+ifeq ($(CONFIG_USE_OF),y)
+KBUILD_DTBS := dtbs
+endif
+
+all: $(KBUILD_IMAGE) $(KBUILD_DTBS)
boot := arch/arm/boot
@@ -306,7 +311,7 @@ define archhelp
echo ' uImage - U-Boot wrapped zImage'
echo ' bootpImage - Combined zImage and initial RAM disk'
echo ' (supply initrd image via make variable INITRD=<path>)'
- echo ' dtbs - Build device tree blobs for enabled boards'
+ echo '* dtbs - Build device tree blobs for enabled boards'
echo ' install - Install uncompressed kernel'
echo ' zinstall - Install compressed kernel'
echo ' uinstall - Install U-Boot wrapped compressed kernel'
--
1.7.10.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2 RESEND] ARM: Build dtb files in all target
[not found] ` <1346691487-17534-1-git-send-email-andrew-g2DYL2Zd6BY@public.gmane.org>
@ 2012-09-07 14:57 ` Jason Cooper
[not found] ` <20120907145701.GB19437-u4khhh1J0LxI1Ri9qeTfzeTW4wlIGRCZ@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: Jason Cooper @ 2012-09-07 14:57 UTC (permalink / raw)
To: Andrew Lunn, Arnd Bergmann, Olof Johansson
Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
linux-lFZ/pmaqli7XmaaqVzeoHQ, linux ARM
On Mon, Sep 03, 2012 at 06:58:07PM +0200, Andrew Lunn wrote:
> Tools like kisskb are good at finding build regressions in the kernel
> sources. However, regressions in the DT desscriptions are not found,
> because generally these build systems don't build the DT binary blobs.
>
> Extend the ARM all target to build all enabled DTB files.
>
> Signed-off-by: Andrew Lunn <andrew-g2DYL2Zd6BY@public.gmane.org>
> Acked-by: Jason Cooper <jason-NLaQJdtUoK4Be96aLqz0jA@public.gmane.org>
> Reviewed-by: Dave Martin <dave.martin-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
Arnd, Olof,
Is it appropriate to take this directly into your tree or should it go
through Russell's?
thx,
Jason.
> ---
> arch/arm/Makefile | 9 +++++++--
> 1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm/Makefile b/arch/arm/Makefile
> index 30eae87..0457ef4 100644
> --- a/arch/arm/Makefile
> +++ b/arch/arm/Makefile
> @@ -268,7 +268,12 @@ else
> KBUILD_IMAGE := zImage
> endif
>
> -all: $(KBUILD_IMAGE)
> +# Build the DT binary blobs if we have OF configured
> +ifeq ($(CONFIG_USE_OF),y)
> +KBUILD_DTBS := dtbs
> +endif
> +
> +all: $(KBUILD_IMAGE) $(KBUILD_DTBS)
>
> boot := arch/arm/boot
>
> @@ -306,7 +311,7 @@ define archhelp
> echo ' uImage - U-Boot wrapped zImage'
> echo ' bootpImage - Combined zImage and initial RAM disk'
> echo ' (supply initrd image via make variable INITRD=<path>)'
> - echo ' dtbs - Build device tree blobs for enabled boards'
> + echo '* dtbs - Build device tree blobs for enabled boards'
> echo ' install - Install uncompressed kernel'
> echo ' zinstall - Install compressed kernel'
> echo ' uinstall - Install U-Boot wrapped compressed kernel'
> --
> 1.7.10.4
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2 RESEND] ARM: Build dtb files in all target
[not found] ` <20120907145701.GB19437-u4khhh1J0LxI1Ri9qeTfzeTW4wlIGRCZ@public.gmane.org>
@ 2012-09-07 21:10 ` Andrew Lunn
2012-09-07 22:19 ` Olof Johansson
1 sibling, 0 replies; 4+ messages in thread
From: Andrew Lunn @ 2012-09-07 21:10 UTC (permalink / raw)
To: Jason Cooper
Cc: Andrew Lunn, linux-lFZ/pmaqli7XmaaqVzeoHQ,
devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, linux ARM
On Fri, Sep 07, 2012 at 10:57:01AM -0400, Jason Cooper wrote:
> On Mon, Sep 03, 2012 at 06:58:07PM +0200, Andrew Lunn wrote:
> > Tools like kisskb are good at finding build regressions in the kernel
> > sources. However, regressions in the DT desscriptions are not found,
> > because generally these build systems don't build the DT binary blobs.
> >
> > Extend the ARM all target to build all enabled DTB files.
> >
> > Signed-off-by: Andrew Lunn <andrew-g2DYL2Zd6BY@public.gmane.org>
> > Acked-by: Jason Cooper <jason-NLaQJdtUoK4Be96aLqz0jA@public.gmane.org>
> > Reviewed-by: Dave Martin <dave.martin-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
>
> Arnd, Olof,
>
> Is it appropriate to take this directly into your tree or should it go
> through Russell's?
I put it into Russell's patch system yesterday.
Andrew
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2 RESEND] ARM: Build dtb files in all target
[not found] ` <20120907145701.GB19437-u4khhh1J0LxI1Ri9qeTfzeTW4wlIGRCZ@public.gmane.org>
2012-09-07 21:10 ` Andrew Lunn
@ 2012-09-07 22:19 ` Olof Johansson
1 sibling, 0 replies; 4+ messages in thread
From: Olof Johansson @ 2012-09-07 22:19 UTC (permalink / raw)
To: Jason Cooper
Cc: Andrew Lunn, devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
linux-lFZ/pmaqli7XmaaqVzeoHQ, linux ARM
On Fri, Sep 07, 2012 at 10:57:01AM -0400, Jason Cooper wrote:
> On Mon, Sep 03, 2012 at 06:58:07PM +0200, Andrew Lunn wrote:
> > Tools like kisskb are good at finding build regressions in the kernel
> > sources. However, regressions in the DT desscriptions are not found,
> > because generally these build systems don't build the DT binary blobs.
> >
> > Extend the ARM all target to build all enabled DTB files.
> >
> > Signed-off-by: Andrew Lunn <andrew-g2DYL2Zd6BY@public.gmane.org>
> > Acked-by: Jason Cooper <jason-NLaQJdtUoK4Be96aLqz0jA@public.gmane.org>
> > Reviewed-by: Dave Martin <dave.martin-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
>
> Arnd, Olof,
>
> Is it appropriate to take this directly into your tree or should it go
> through Russell's?
Please send it to Russell's patch tracker, and feel free to add my:
Acked-by: Olof Johansson <olof-nZhT3qVonbNeoWH0uzbU5w@public.gmane.org>
-Olof
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-09-07 22:19 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-03 16:58 [PATCH v2 RESEND] ARM: Build dtb files in all target Andrew Lunn
[not found] ` <1346691487-17534-1-git-send-email-andrew-g2DYL2Zd6BY@public.gmane.org>
2012-09-07 14:57 ` Jason Cooper
[not found] ` <20120907145701.GB19437-u4khhh1J0LxI1Ri9qeTfzeTW4wlIGRCZ@public.gmane.org>
2012-09-07 21:10 ` Andrew Lunn
2012-09-07 22:19 ` Olof Johansson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).