diff mbox

[U-Boot,2/2,V2] SPL: Allow ARM926EJS to avoid compiling in the CPU support code

Message ID 1319451263-15280-1-git-send-email-marek.vasut@gmail.com
State Accepted
Commit 99bd341b96d42139429c0d9da58f59b8395e407e
Delegated to: Albert ARIBAUD
Headers show

Commit Message

Marek Vasut Oct. 24, 2011, 10:14 a.m. UTC
This allows the SPL to avoid compiling in the CPU support code.

Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Detlev Zundel <dzu@denx.de>
Cc: Scott Wood <scottwood@freescale.com>
---
 arch/arm/cpu/arm926ejs/Makefile |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

V2: Don't frob with cpu.o as it's going to be removed anyway.

Comments

Marek Vasut Nov. 3, 2011, 12:05 a.m. UTC | #1
> This allows the SPL to avoid compiling in the CPU support code.
> 
> Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
> Cc: Stefano Babic <sbabic@denx.de>
> Cc: Wolfgang Denk <wd@denx.de>
> Cc: Detlev Zundel <dzu@denx.de>
> Cc: Scott Wood <scottwood@freescale.com>
> ---
>  arch/arm/cpu/arm926ejs/Makefile |    6 ++++++
>  1 files changed, 6 insertions(+), 0 deletions(-)
> 
> V2: Don't frob with cpu.o as it's going to be removed anyway.
> 
> diff --git a/arch/arm/cpu/arm926ejs/Makefile
> b/arch/arm/cpu/arm926ejs/Makefile index 930e0d1..a56ff08 100644
> --- a/arch/arm/cpu/arm926ejs/Makefile
> +++ b/arch/arm/cpu/arm926ejs/Makefile
> @@ -28,6 +28,12 @@ LIB	= $(obj)lib$(CPU).o
>  START	= start.o
>  COBJS	= cpu.o
> 
> +ifdef	CONFIG_SPL_BUILD
> +ifdef	CONFIG_SPL_NO_CPU_SUPPORT_CODE
> +START	:=
> +endif
> +endif
> +
>  SRCS	:= $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
>  OBJS	:= $(addprefix $(obj),$(COBJS) $(SOBJS))
>  START	:= $(addprefix $(obj),$(START))

Hi Albert,

can you apply please?

Thanks
Marek Vasut Nov. 4, 2011, 1:59 p.m. UTC | #2
> > This allows the SPL to avoid compiling in the CPU support code.
> > 
> > Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
> > Cc: Stefano Babic <sbabic@denx.de>
> > Cc: Wolfgang Denk <wd@denx.de>
> > Cc: Detlev Zundel <dzu@denx.de>
> > Cc: Scott Wood <scottwood@freescale.com>
> > ---
> > 
> >  arch/arm/cpu/arm926ejs/Makefile |    6 ++++++
> >  1 files changed, 6 insertions(+), 0 deletions(-)
> > 
> > V2: Don't frob with cpu.o as it's going to be removed anyway.
> > 
> > diff --git a/arch/arm/cpu/arm926ejs/Makefile
> > b/arch/arm/cpu/arm926ejs/Makefile index 930e0d1..a56ff08 100644
> > --- a/arch/arm/cpu/arm926ejs/Makefile
> > +++ b/arch/arm/cpu/arm926ejs/Makefile
> > @@ -28,6 +28,12 @@ LIB	= $(obj)lib$(CPU).o
> > 
> >  START	= start.o
> >  COBJS	= cpu.o
> > 
> > +ifdef	CONFIG_SPL_BUILD
> > +ifdef	CONFIG_SPL_NO_CPU_SUPPORT_CODE
> > +START	:=
> > +endif
> > +endif
> > +
> > 
> >  SRCS	:= $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
> >  OBJS	:= $(addprefix $(obj),$(COBJS) $(SOBJS))
> >  START	:= $(addprefix $(obj),$(START))
> 
> Hi Albert,
> 
> can you apply please?
> 
> Thanks

Ping ?
Albert ARIBAUD Nov. 8, 2011, 9:15 p.m. UTC | #3
Hi Marek,

Le 24/10/2011 12:14, Marek Vasut a écrit :
> This allows the SPL to avoid compiling in the CPU support code.
>
> Signed-off-by: Marek Vasut<marek.vasut@gmail.com>
> Cc: Stefano Babic<sbabic@denx.de>
> Cc: Wolfgang Denk<wd@denx.de>
> Cc: Detlev Zundel<dzu@denx.de>
> Cc: Scott Wood<scottwood@freescale.com>
> ---
>   arch/arm/cpu/arm926ejs/Makefile |    6 ++++++
>   1 files changed, 6 insertions(+), 0 deletions(-)
>
> V2: Don't frob with cpu.o as it's going to be removed anyway.
>
> diff --git a/arch/arm/cpu/arm926ejs/Makefile b/arch/arm/cpu/arm926ejs/Makefile
> index 930e0d1..a56ff08 100644
> --- a/arch/arm/cpu/arm926ejs/Makefile
> +++ b/arch/arm/cpu/arm926ejs/Makefile
> @@ -28,6 +28,12 @@ LIB	= $(obj)lib$(CPU).o
>   START	= start.o
>   COBJS	= cpu.o
>
> +ifdef	CONFIG_SPL_BUILD
> +ifdef	CONFIG_SPL_NO_CPU_SUPPORT_CODE
> +START	:=
> +endif
> +endif
> +
>   SRCS	:= $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
>   OBJS	:= $(addprefix $(obj),$(COBJS) $(SOBJS))
>   START	:= $(addprefix $(obj),$(START))

Applied to u-boot-arm/master, thanks!

Amicalement,
diff mbox

Patch

diff --git a/arch/arm/cpu/arm926ejs/Makefile b/arch/arm/cpu/arm926ejs/Makefile
index 930e0d1..a56ff08 100644
--- a/arch/arm/cpu/arm926ejs/Makefile
+++ b/arch/arm/cpu/arm926ejs/Makefile
@@ -28,6 +28,12 @@  LIB	= $(obj)lib$(CPU).o
 START	= start.o
 COBJS	= cpu.o
 
+ifdef	CONFIG_SPL_BUILD
+ifdef	CONFIG_SPL_NO_CPU_SUPPORT_CODE
+START	:=
+endif
+endif
+
 SRCS	:= $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
 OBJS	:= $(addprefix $(obj),$(COBJS) $(SOBJS))
 START	:= $(addprefix $(obj),$(START))