public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 01/10] mx53loco: Remove unused SOBJS
@ 2012-05-29 17:39 Fabio Estevam
  2012-05-29 17:39 ` [U-Boot] [PATCH 02/10] mx53evk: " Fabio Estevam
                   ` (9 more replies)
  0 siblings, 10 replies; 14+ messages in thread
From: Fabio Estevam @ 2012-05-29 17:39 UTC (permalink / raw)
  To: u-boot

There is no .S file in this directory, so just remove SOBJS.

Cc: Jason Liu <r64343@freescale.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 board/freescale/mx53loco/Makefile |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/board/freescale/mx53loco/Makefile b/board/freescale/mx53loco/Makefile
index a6ea939..8bc69a9 100644
--- a/board/freescale/mx53loco/Makefile
+++ b/board/freescale/mx53loco/Makefile
@@ -24,12 +24,11 @@ LIB	= $(obj)lib$(BOARD).o
 
 COBJS	:= mx53loco.o
 
-SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
+SRCS	:= $(COBJS:.o=.c)
 OBJS	:= $(addprefix $(obj),$(COBJS))
-SOBJS	:= $(addprefix $(obj),$(SOBJS))
 
-$(LIB):	$(obj).depend $(OBJS) $(SOBJS)
-	$(call cmd_link_o_target, $(OBJS) $(SOBJS))
+$(LIB):	$(obj).depend $(OBJS)
+	$(call cmd_link_o_target, $(OBJS))
 
 #########################################################################
 
-- 
1.7.1

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

* [U-Boot] [PATCH 02/10] mx53evk: Remove unused SOBJS
  2012-05-29 17:39 [U-Boot] [PATCH 01/10] mx53loco: Remove unused SOBJS Fabio Estevam
@ 2012-05-29 17:39 ` Fabio Estevam
  2012-05-29 17:39 ` [U-Boot] [PATCH 03/10] mx53ard: " Fabio Estevam
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Fabio Estevam @ 2012-05-29 17:39 UTC (permalink / raw)
  To: u-boot

There is no .S file in this directory, so just remove SOBJS.

Cc: Jason Liu <r64343@freescale.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 board/freescale/mx53evk/Makefile |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/board/freescale/mx53evk/Makefile b/board/freescale/mx53evk/Makefile
index b7f92b3..dcc83e2 100644
--- a/board/freescale/mx53evk/Makefile
+++ b/board/freescale/mx53evk/Makefile
@@ -25,12 +25,11 @@ LIB	= $(obj)lib$(BOARD).o
 
 COBJS	:= mx53evk.o
 
-SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
+SRCS	:= $(COBJS:.o=.c)
 OBJS	:= $(addprefix $(obj),$(COBJS))
-SOBJS	:= $(addprefix $(obj),$(SOBJS))
 
-$(LIB):	$(obj).depend $(OBJS) $(SOBJS)
-	$(call cmd_link_o_target, $(OBJS) $(SOBJS))
+$(LIB):	$(obj).depend $(OBJS)
+	$(call cmd_link_o_target, $(OBJS))
 
 #########################################################################
 
-- 
1.7.1

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

* [U-Boot] [PATCH 03/10] mx53ard: Remove unused SOBJS
  2012-05-29 17:39 [U-Boot] [PATCH 01/10] mx53loco: Remove unused SOBJS Fabio Estevam
  2012-05-29 17:39 ` [U-Boot] [PATCH 02/10] mx53evk: " Fabio Estevam
@ 2012-05-29 17:39 ` Fabio Estevam
  2012-05-29 17:39 ` [U-Boot] [PATCH 04/10] mx53smd: " Fabio Estevam
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Fabio Estevam @ 2012-05-29 17:39 UTC (permalink / raw)
  To: u-boot

There is no .S file in this directory, so just remove SOBJS.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 board/freescale/mx53ard/Makefile |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/board/freescale/mx53ard/Makefile b/board/freescale/mx53ard/Makefile
index eac4b2a..335af11 100644
--- a/board/freescale/mx53ard/Makefile
+++ b/board/freescale/mx53ard/Makefile
@@ -25,12 +25,11 @@ LIB	= $(obj)lib$(BOARD).o
 
 COBJS	:= mx53ard.o
 
-SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
+SRCS	:= $(COBJS:.o=.c)
 OBJS	:= $(addprefix $(obj),$(COBJS))
-SOBJS	:= $(addprefix $(obj),$(SOBJS))
 
-$(LIB):	$(obj).depend $(OBJS) $(SOBJS)
-	$(call cmd_link_o_target, $(OBJS) $(SOBJS))
+$(LIB):	$(obj).depend $(OBJS)
+	$(call cmd_link_o_target, $(OBJS))
 
 #########################################################################
 
-- 
1.7.1

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

* [U-Boot] [PATCH 04/10] mx53smd: Remove unused SOBJS
  2012-05-29 17:39 [U-Boot] [PATCH 01/10] mx53loco: Remove unused SOBJS Fabio Estevam
  2012-05-29 17:39 ` [U-Boot] [PATCH 02/10] mx53evk: " Fabio Estevam
  2012-05-29 17:39 ` [U-Boot] [PATCH 03/10] mx53ard: " Fabio Estevam
@ 2012-05-29 17:39 ` Fabio Estevam
  2012-05-29 17:39 ` [U-Boot] [PATCH 05/10] mx51evk: " Fabio Estevam
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Fabio Estevam @ 2012-05-29 17:39 UTC (permalink / raw)
  To: u-boot

There is no .S file in this directory, so just remove SOBJS.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 board/freescale/mx53smd/Makefile |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/board/freescale/mx53smd/Makefile b/board/freescale/mx53smd/Makefile
index ed8e473..8a404c8 100644
--- a/board/freescale/mx53smd/Makefile
+++ b/board/freescale/mx53smd/Makefile
@@ -25,12 +25,11 @@ LIB	= $(obj)lib$(BOARD).o
 
 COBJS	:= mx53smd.o
 
-SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
+SRCS	:= $(COBJS:.o=.c)
 OBJS	:= $(addprefix $(obj),$(COBJS))
-SOBJS	:= $(addprefix $(obj),$(SOBJS))
 
-$(LIB):	$(obj).depend $(OBJS) $(SOBJS)
-	$(call cmd_link_o_target, $(OBJS) $(SOBJS))
+$(LIB):	$(obj).depend $(OBJS)
+	$(call cmd_link_o_target, $(OBJS))
 
 #########################################################################
 
-- 
1.7.1

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

* [U-Boot] [PATCH 05/10] mx51evk: Remove unused SOBJS
  2012-05-29 17:39 [U-Boot] [PATCH 01/10] mx53loco: Remove unused SOBJS Fabio Estevam
                   ` (2 preceding siblings ...)
  2012-05-29 17:39 ` [U-Boot] [PATCH 04/10] mx53smd: " Fabio Estevam
@ 2012-05-29 17:39 ` Fabio Estevam
  2012-05-29 17:39 ` [U-Boot] [PATCH 06/10] efikamx: " Fabio Estevam
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Fabio Estevam @ 2012-05-29 17:39 UTC (permalink / raw)
  To: u-boot

There is no .S file in this directory, so just remove SOBJS.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 board/freescale/mx51evk/Makefile |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/board/freescale/mx51evk/Makefile b/board/freescale/mx51evk/Makefile
index 470588e..224eaa3 100644
--- a/board/freescale/mx51evk/Makefile
+++ b/board/freescale/mx51evk/Makefile
@@ -25,12 +25,11 @@ LIB	= $(obj)lib$(BOARD).o
 
 COBJS	:= mx51evk.o
 
-SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
+SRCS	:= $(COBJS:.o=.c)
 OBJS	:= $(addprefix $(obj),$(COBJS))
-SOBJS	:= $(addprefix $(obj),$(SOBJS))
 
-$(LIB):	$(obj).depend $(OBJS) $(SOBJS)
-	$(call cmd_link_o_target, $(OBJS) $(SOBJS))
+$(LIB):	$(obj).depend $(OBJS)
+	$(call cmd_link_o_target, $(OBJS))
 
 #########################################################################
 
-- 
1.7.1

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

* [U-Boot] [PATCH 06/10] efikamx: Remove unused SOBJS
  2012-05-29 17:39 [U-Boot] [PATCH 01/10] mx53loco: Remove unused SOBJS Fabio Estevam
                   ` (3 preceding siblings ...)
  2012-05-29 17:39 ` [U-Boot] [PATCH 05/10] mx51evk: " Fabio Estevam
@ 2012-05-29 17:39 ` Fabio Estevam
  2012-05-29 17:54   ` Marek Vasut
  2012-05-29 17:40 ` [U-Boot] [PATCH 07/10] vision2: " Fabio Estevam
                   ` (4 subsequent siblings)
  9 siblings, 1 reply; 14+ messages in thread
From: Fabio Estevam @ 2012-05-29 17:39 UTC (permalink / raw)
  To: u-boot

There is no .S file in this directory, so just remove SOBJS.

Cc: Marek Vasut <marex@denx.de>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 board/efikamx/Makefile |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/board/efikamx/Makefile b/board/efikamx/Makefile
index fdd188e..bd2174f 100644
--- a/board/efikamx/Makefile
+++ b/board/efikamx/Makefile
@@ -33,12 +33,11 @@ ifdef	CONFIG_CMD_USB
 COBJS	+= efikamx-usb.o
 endif
 
-SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
+SRCS	:= $(COBJS:.o=.c)
 OBJS	:= $(addprefix $(obj),$(COBJS))
-SOBJS	:= $(addprefix $(obj),$(SOBJS))
 
-$(LIB):	$(obj).depend $(OBJS) $(SOBJS)
-	$(call cmd_link_o_target, $(OBJS) $(SOBJS))
+$(LIB):	$(obj).depend $(OBJS)
+	$(call cmd_link_o_target, $(OBJS))
 
 #########################################################################
 
-- 
1.7.1

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

* [U-Boot] [PATCH 07/10] vision2: Remove unused SOBJS
  2012-05-29 17:39 [U-Boot] [PATCH 01/10] mx53loco: Remove unused SOBJS Fabio Estevam
                   ` (4 preceding siblings ...)
  2012-05-29 17:39 ` [U-Boot] [PATCH 06/10] efikamx: " Fabio Estevam
@ 2012-05-29 17:40 ` Fabio Estevam
  2012-05-29 17:40 ` [U-Boot] [PATCH 08/10] ima3-mx53: " Fabio Estevam
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Fabio Estevam @ 2012-05-29 17:40 UTC (permalink / raw)
  To: u-boot

There is no .S file in this directory, so just remove SOBJS.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 board/ttcontrol/vision2/Makefile |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/board/ttcontrol/vision2/Makefile b/board/ttcontrol/vision2/Makefile
index 393ad68..1e018b0 100644
--- a/board/ttcontrol/vision2/Makefile
+++ b/board/ttcontrol/vision2/Makefile
@@ -25,12 +25,11 @@ LIB	= $(obj)lib$(BOARD).o
 
 COBJS	:= vision2.o
 
-SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
+SRCS	:= $(COBJS:.o=.c)
 OBJS	:= $(addprefix $(obj),$(COBJS))
-SOBJS	:= $(addprefix $(obj),$(SOBJS))
 
 $(LIB):	$(obj).depend $(OBJS) $(SOBJS)
-	$(call cmd_link_o_target, $(OBJS) $(SOBJS))
+	$(call cmd_link_o_target, $(OBJS))
 
 #########################################################################
 
-- 
1.7.1

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

* [U-Boot] [PATCH 08/10] ima3-mx53: Remove unused SOBJS
  2012-05-29 17:39 [U-Boot] [PATCH 01/10] mx53loco: Remove unused SOBJS Fabio Estevam
                   ` (5 preceding siblings ...)
  2012-05-29 17:40 ` [U-Boot] [PATCH 07/10] vision2: " Fabio Estevam
@ 2012-05-29 17:40 ` Fabio Estevam
  2012-05-29 17:40 ` [U-Boot] [PATCH 09/10] mx6qarm2: " Fabio Estevam
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 14+ messages in thread
From: Fabio Estevam @ 2012-05-29 17:40 UTC (permalink / raw)
  To: u-boot

There is no .S file in this directory, so just remove SOBJS.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 board/esg/ima3-mx53/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/board/esg/ima3-mx53/Makefile b/board/esg/ima3-mx53/Makefile
index f3b13bc..ab18944 100644
--- a/board/esg/ima3-mx53/Makefile
+++ b/board/esg/ima3-mx53/Makefile
@@ -25,7 +25,7 @@ LIB	= $(obj)lib$(BOARD).o
 
 COBJS	:= ima3-mx53.o
 
-SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
+SRCS	:= $(COBJS:.o=.c)
 OBJS	:= $(addprefix $(obj),$(COBJS))
 
 $(LIB):	$(obj).depend $(OBJS)
-- 
1.7.1

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

* [U-Boot] [PATCH 09/10] mx6qarm2: Remove unused SOBJS
  2012-05-29 17:39 [U-Boot] [PATCH 01/10] mx53loco: Remove unused SOBJS Fabio Estevam
                   ` (6 preceding siblings ...)
  2012-05-29 17:40 ` [U-Boot] [PATCH 08/10] ima3-mx53: " Fabio Estevam
@ 2012-05-29 17:40 ` Fabio Estevam
  2012-05-30  1:11   ` Liu Hui-R64343
  2012-05-29 17:40 ` [U-Boot] [PATCH 10/10] mx6qsabrelite: " Fabio Estevam
  2012-06-12 17:30 ` [U-Boot] [PATCH 01/10] mx53loco: " Stefano Babic
  9 siblings, 1 reply; 14+ messages in thread
From: Fabio Estevam @ 2012-05-29 17:40 UTC (permalink / raw)
  To: u-boot

There is no .S file in this directory, so just remove SOBJS.

Cc: Jason Liu <r64343@freescale.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 board/freescale/mx6qarm2/Makefile |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/board/freescale/mx6qarm2/Makefile b/board/freescale/mx6qarm2/Makefile
index 79bc315..6ce4495 100644
--- a/board/freescale/mx6qarm2/Makefile
+++ b/board/freescale/mx6qarm2/Makefile
@@ -25,12 +25,11 @@ LIB	= $(obj)lib$(BOARD).o
 
 COBJS	:= mx6qarm2.o
 
-SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
+SRCS	:= $(COBJS:.o=.c)
 OBJS	:= $(addprefix $(obj),$(COBJS))
-SOBJS	:= $(addprefix $(obj),$(SOBJS))
 
-$(LIB):	$(obj).depend $(OBJS) $(SOBJS)
-	$(call cmd_link_o_target, $(OBJS) $(SOBJS))
+$(LIB):	$(obj).depend $(OBJS)
+	$(call cmd_link_o_target, $(OBJS))
 
 #########################################################################
 
-- 
1.7.1

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

* [U-Boot] [PATCH 10/10] mx6qsabrelite: Remove unused SOBJS
  2012-05-29 17:39 [U-Boot] [PATCH 01/10] mx53loco: Remove unused SOBJS Fabio Estevam
                   ` (7 preceding siblings ...)
  2012-05-29 17:40 ` [U-Boot] [PATCH 09/10] mx6qarm2: " Fabio Estevam
@ 2012-05-29 17:40 ` Fabio Estevam
  2012-05-30  1:11   ` Liu Hui-R64343
  2012-06-12 17:30 ` [U-Boot] [PATCH 01/10] mx53loco: " Stefano Babic
  9 siblings, 1 reply; 14+ messages in thread
From: Fabio Estevam @ 2012-05-29 17:40 UTC (permalink / raw)
  To: u-boot

There is no .S file in this directory, so just remove SOBJS.

Cc: Jason Liu <r64343@freescale.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 board/freescale/mx6qsabrelite/Makefile |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/board/freescale/mx6qsabrelite/Makefile b/board/freescale/mx6qsabrelite/Makefile
index 53c26e7..cf344e4 100644
--- a/board/freescale/mx6qsabrelite/Makefile
+++ b/board/freescale/mx6qsabrelite/Makefile
@@ -25,12 +25,11 @@ LIB    = $(obj)lib$(BOARD).o
 
 COBJS  := mx6qsabrelite.o
 
-SRCS   := $(SOBJS:.o=.S) $(COBJS:.o=.c)
+SRCS   := $(COBJS:.o=.c)
 OBJS   := $(addprefix $(obj),$(COBJS))
-SOBJS  := $(addprefix $(obj),$(SOBJS))
 
-$(LIB):        $(obj).depend $(OBJS) $(SOBJS)
-	$(call cmd_link_o_target, $(OBJS) $(SOBJS))
+$(LIB):        $(obj).depend $(OBJS)
+	$(call cmd_link_o_target, $(OBJS))
 
 #########################################################################
 
-- 
1.7.1

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

* [U-Boot] [PATCH 06/10] efikamx: Remove unused SOBJS
  2012-05-29 17:39 ` [U-Boot] [PATCH 06/10] efikamx: " Fabio Estevam
@ 2012-05-29 17:54   ` Marek Vasut
  0 siblings, 0 replies; 14+ messages in thread
From: Marek Vasut @ 2012-05-29 17:54 UTC (permalink / raw)
  To: u-boot

Dear Fabio Estevam,

> There is no .S file in this directory, so just remove SOBJS.
> 
> Cc: Marek Vasut <marex@denx.de>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Looks ok,

Acked-by: Marek Vasut <marex@denx.de>

> ---
>  board/efikamx/Makefile |    7 +++----
>  1 files changed, 3 insertions(+), 4 deletions(-)
> 
> diff --git a/board/efikamx/Makefile b/board/efikamx/Makefile
> index fdd188e..bd2174f 100644
> --- a/board/efikamx/Makefile
> +++ b/board/efikamx/Makefile
> @@ -33,12 +33,11 @@ ifdef	CONFIG_CMD_USB
>  COBJS	+= efikamx-usb.o
>  endif
> 
> -SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
> +SRCS	:= $(COBJS:.o=.c)
>  OBJS	:= $(addprefix $(obj),$(COBJS))
> -SOBJS	:= $(addprefix $(obj),$(SOBJS))
> 
> -$(LIB):	$(obj).depend $(OBJS) $(SOBJS)
> -	$(call cmd_link_o_target, $(OBJS) $(SOBJS))
> +$(LIB):	$(obj).depend $(OBJS)
> +	$(call cmd_link_o_target, $(OBJS))
> 
>  #########################################################################

Best regards,
Marek Vasut

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

* [U-Boot] [PATCH 09/10] mx6qarm2: Remove unused SOBJS
  2012-05-29 17:40 ` [U-Boot] [PATCH 09/10] mx6qarm2: " Fabio Estevam
@ 2012-05-30  1:11   ` Liu Hui-R64343
  0 siblings, 0 replies; 14+ messages in thread
From: Liu Hui-R64343 @ 2012-05-30  1:11 UTC (permalink / raw)
  To: u-boot

>-----Original Message-----
>From: Estevam Fabio-R49496
>Sent: Wednesday, May 30, 2012 1:40 AM
>To: u-boot at lists.denx.de
>Cc: sbabic at denx.de; Estevam Fabio-R49496; Liu Hui-R64343
>Subject: [PATCH 09/10] mx6qarm2: Remove unused SOBJS
>
>There is no .S file in this directory, so just remove SOBJS.
>
>Cc: Jason Liu <r64343@freescale.com>
>Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Acked-by: Jason Liu <r64343@freescale.com>

>---
> board/freescale/mx6qarm2/Makefile |    7 +++----
> 1 files changed, 3 insertions(+), 4 deletions(-)
>
>diff --git a/board/freescale/mx6qarm2/Makefile
>b/board/freescale/mx6qarm2/Makefile
>index 79bc315..6ce4495 100644
>--- a/board/freescale/mx6qarm2/Makefile
>+++ b/board/freescale/mx6qarm2/Makefile
>@@ -25,12 +25,11 @@ LIB	= $(obj)lib$(BOARD).o
>
> COBJS	:= mx6qarm2.o
>
>-SRCS	:= $(SOBJS:.o=.S) $(COBJS:.o=.c)
>+SRCS	:= $(COBJS:.o=.c)
> OBJS	:= $(addprefix $(obj),$(COBJS))
>-SOBJS	:= $(addprefix $(obj),$(SOBJS))
>
>-$(LIB):	$(obj).depend $(OBJS) $(SOBJS)
>-	$(call cmd_link_o_target, $(OBJS) $(SOBJS))
>+$(LIB):	$(obj).depend $(OBJS)
>+	$(call cmd_link_o_target, $(OBJS))
>
>
>#################################################################
>########
>
>--
>1.7.1

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

* [U-Boot] [PATCH 10/10] mx6qsabrelite: Remove unused SOBJS
  2012-05-29 17:40 ` [U-Boot] [PATCH 10/10] mx6qsabrelite: " Fabio Estevam
@ 2012-05-30  1:11   ` Liu Hui-R64343
  0 siblings, 0 replies; 14+ messages in thread
From: Liu Hui-R64343 @ 2012-05-30  1:11 UTC (permalink / raw)
  To: u-boot

>-----Original Message-----
>From: Estevam Fabio-R49496
>Sent: Wednesday, May 30, 2012 1:40 AM
>To: u-boot at lists.denx.de
>Cc: sbabic at denx.de; Estevam Fabio-R49496; Liu Hui-R64343
>Subject: [PATCH 10/10] mx6qsabrelite: Remove unused SOBJS
>
>There is no .S file in this directory, so just remove SOBJS.
>
>Cc: Jason Liu <r64343@freescale.com>
>Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Acked-by: Jason Liu <r64343@freescale.com>

>---
> board/freescale/mx6qsabrelite/Makefile |    7 +++----
> 1 files changed, 3 insertions(+), 4 deletions(-)
>
>diff --git a/board/freescale/mx6qsabrelite/Makefile
>b/board/freescale/mx6qsabrelite/Makefile
>index 53c26e7..cf344e4 100644
>--- a/board/freescale/mx6qsabrelite/Makefile
>+++ b/board/freescale/mx6qsabrelite/Makefile
>@@ -25,12 +25,11 @@ LIB    = $(obj)lib$(BOARD).o
>
> COBJS  := mx6qsabrelite.o
>
>-SRCS   := $(SOBJS:.o=.S) $(COBJS:.o=.c)
>+SRCS   := $(COBJS:.o=.c)
> OBJS   := $(addprefix $(obj),$(COBJS))
>-SOBJS  := $(addprefix $(obj),$(SOBJS))
>
>-$(LIB):        $(obj).depend $(OBJS) $(SOBJS)
>-	$(call cmd_link_o_target, $(OBJS) $(SOBJS))
>+$(LIB):        $(obj).depend $(OBJS)
>+	$(call cmd_link_o_target, $(OBJS))
>
>
>#################################################################
>########
>
>--
>1.7.1

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

* [U-Boot] [PATCH 01/10] mx53loco: Remove unused SOBJS
  2012-05-29 17:39 [U-Boot] [PATCH 01/10] mx53loco: Remove unused SOBJS Fabio Estevam
                   ` (8 preceding siblings ...)
  2012-05-29 17:40 ` [U-Boot] [PATCH 10/10] mx6qsabrelite: " Fabio Estevam
@ 2012-06-12 17:30 ` Stefano Babic
  9 siblings, 0 replies; 14+ messages in thread
From: Stefano Babic @ 2012-06-12 17:30 UTC (permalink / raw)
  To: u-boot

On 29/05/2012 19:39, Fabio Estevam wrote:
> There is no .S file in this directory, so just remove SOBJS.
> 
> Cc: Jason Liu <r64343@freescale.com>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---


Applied the whole series to u-boot-imx, thanks.

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

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

end of thread, other threads:[~2012-06-12 17:30 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-29 17:39 [U-Boot] [PATCH 01/10] mx53loco: Remove unused SOBJS Fabio Estevam
2012-05-29 17:39 ` [U-Boot] [PATCH 02/10] mx53evk: " Fabio Estevam
2012-05-29 17:39 ` [U-Boot] [PATCH 03/10] mx53ard: " Fabio Estevam
2012-05-29 17:39 ` [U-Boot] [PATCH 04/10] mx53smd: " Fabio Estevam
2012-05-29 17:39 ` [U-Boot] [PATCH 05/10] mx51evk: " Fabio Estevam
2012-05-29 17:39 ` [U-Boot] [PATCH 06/10] efikamx: " Fabio Estevam
2012-05-29 17:54   ` Marek Vasut
2012-05-29 17:40 ` [U-Boot] [PATCH 07/10] vision2: " Fabio Estevam
2012-05-29 17:40 ` [U-Boot] [PATCH 08/10] ima3-mx53: " Fabio Estevam
2012-05-29 17:40 ` [U-Boot] [PATCH 09/10] mx6qarm2: " Fabio Estevam
2012-05-30  1:11   ` Liu Hui-R64343
2012-05-29 17:40 ` [U-Boot] [PATCH 10/10] mx6qsabrelite: " Fabio Estevam
2012-05-30  1:11   ` Liu Hui-R64343
2012-06-12 17:30 ` [U-Boot] [PATCH 01/10] mx53loco: " Stefano Babic

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