mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [For-next PATCH 1/1] switch more boards to lwl-y
@ 2013-02-22 12:44 Jean-Christophe PLAGNIOL-VILLARD
  2013-03-04  8:27 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2013-02-22 12:44 UTC (permalink / raw)
  To: barebox

Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
---
 arch/arm/boards/freescale-mx6-sabresd/Makefile |    7 +++----
 arch/arm/boards/highbank/Makefile              |    3 +--
 arch/arm/boards/vexpress/Makefile              |    3 +--
 arch/arm/mach-clps711x/Makefile                |    4 ++--
 4 files changed, 7 insertions(+), 10 deletions(-)

diff --git a/arch/arm/boards/freescale-mx6-sabresd/Makefile b/arch/arm/boards/freescale-mx6-sabresd/Makefile
index 21fb7d9..d44f697 100644
--- a/arch/arm/boards/freescale-mx6-sabresd/Makefile
+++ b/arch/arm/boards/freescale-mx6-sabresd/Makefile
@@ -1,4 +1,3 @@
-obj-y += board.o flash_header.o
-pbl-y += flash_header.o
-obj-y += lowlevel.o
-pbl-y += lowlevel.o
+obj-y += board.o
+lwl-y += flash_header.o
+lwl-y += lowlevel.o
diff --git a/arch/arm/boards/highbank/Makefile b/arch/arm/boards/highbank/Makefile
index 98921a4..e11fd5b 100644
--- a/arch/arm/boards/highbank/Makefile
+++ b/arch/arm/boards/highbank/Makefile
@@ -1,4 +1,3 @@
 obj-y += init.o
 
-obj-y += lowlevel.o
-pbl-y += lowlevel.o
+lwl-y += lowlevel.o
diff --git a/arch/arm/boards/vexpress/Makefile b/arch/arm/boards/vexpress/Makefile
index 98921a4..e11fd5b 100644
--- a/arch/arm/boards/vexpress/Makefile
+++ b/arch/arm/boards/vexpress/Makefile
@@ -1,4 +1,3 @@
 obj-y += init.o
 
-obj-y += lowlevel.o
-pbl-y += lowlevel.o
+lwl-y += lowlevel.o
diff --git a/arch/arm/mach-clps711x/Makefile b/arch/arm/mach-clps711x/Makefile
index 69a4a3c..4552534 100644
--- a/arch/arm/mach-clps711x/Makefile
+++ b/arch/arm/mach-clps711x/Makefile
@@ -1,2 +1,2 @@
-obj-y += clock.o devices.o lowlevel.o reset.o
-pbl-y += lowlevel.o
+obj-y += clock.o devices.o reset.o
+lwl-y += lowlevel.o
-- 
1.7.10.4


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

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [For-next PATCH 1/1] switch more boards to lwl-y
  2013-02-22 12:44 [For-next PATCH 1/1] switch more boards to lwl-y Jean-Christophe PLAGNIOL-VILLARD
@ 2013-03-04  8:27 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2013-03-04  8:27 UTC (permalink / raw)
  To: Jean-Christophe PLAGNIOL-VILLARD; +Cc: barebox

On Fri, Feb 22, 2013 at 01:44:14PM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>

Applied, thanks

Sascha

> ---
>  arch/arm/boards/freescale-mx6-sabresd/Makefile |    7 +++----
>  arch/arm/boards/highbank/Makefile              |    3 +--
>  arch/arm/boards/vexpress/Makefile              |    3 +--
>  arch/arm/mach-clps711x/Makefile                |    4 ++--
>  4 files changed, 7 insertions(+), 10 deletions(-)
> 
> diff --git a/arch/arm/boards/freescale-mx6-sabresd/Makefile b/arch/arm/boards/freescale-mx6-sabresd/Makefile
> index 21fb7d9..d44f697 100644
> --- a/arch/arm/boards/freescale-mx6-sabresd/Makefile
> +++ b/arch/arm/boards/freescale-mx6-sabresd/Makefile
> @@ -1,4 +1,3 @@
> -obj-y += board.o flash_header.o
> -pbl-y += flash_header.o
> -obj-y += lowlevel.o
> -pbl-y += lowlevel.o
> +obj-y += board.o
> +lwl-y += flash_header.o
> +lwl-y += lowlevel.o
> diff --git a/arch/arm/boards/highbank/Makefile b/arch/arm/boards/highbank/Makefile
> index 98921a4..e11fd5b 100644
> --- a/arch/arm/boards/highbank/Makefile
> +++ b/arch/arm/boards/highbank/Makefile
> @@ -1,4 +1,3 @@
>  obj-y += init.o
>  
> -obj-y += lowlevel.o
> -pbl-y += lowlevel.o
> +lwl-y += lowlevel.o
> diff --git a/arch/arm/boards/vexpress/Makefile b/arch/arm/boards/vexpress/Makefile
> index 98921a4..e11fd5b 100644
> --- a/arch/arm/boards/vexpress/Makefile
> +++ b/arch/arm/boards/vexpress/Makefile
> @@ -1,4 +1,3 @@
>  obj-y += init.o
>  
> -obj-y += lowlevel.o
> -pbl-y += lowlevel.o
> +lwl-y += lowlevel.o
> diff --git a/arch/arm/mach-clps711x/Makefile b/arch/arm/mach-clps711x/Makefile
> index 69a4a3c..4552534 100644
> --- a/arch/arm/mach-clps711x/Makefile
> +++ b/arch/arm/mach-clps711x/Makefile
> @@ -1,2 +1,2 @@
> -obj-y += clock.o devices.o lowlevel.o reset.o
> -pbl-y += lowlevel.o
> +obj-y += clock.o devices.o reset.o
> +lwl-y += lowlevel.o
> -- 
> 1.7.10.4
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

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

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-03-04  8:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-22 12:44 [For-next PATCH 1/1] switch more boards to lwl-y Jean-Christophe PLAGNIOL-VILLARD
2013-03-04  8:27 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox