Re: [U-Boot] [PATCH 1/2] SPL: Make path to start.S configurable

2011-09-16 Thread Marek Vasut
On Friday, September 16, 2011 06:16:15 PM Scott Wood wrote: > On 09/15/2011 06:02 PM, Marek Vasut wrote: > > On Friday, September 16, 2011 12:54:26 AM Scott Wood wrote: > >> How about: > >> > >> ifdef CONFIG_SPL_START_FILE > >> START := $(subst ",,$(CONFIG_SPL_START_FILE)) > >> else > >> START :=

Re: [U-Boot] [PATCH 1/2] SPL: Make path to start.S configurable

2011-09-16 Thread Scott Wood
On 09/15/2011 06:02 PM, Marek Vasut wrote: > On Friday, September 16, 2011 12:54:26 AM Scott Wood wrote: >> How about: >> >> ifdef CONFIG_SPL_START_FILE >> START := $(subst ",,$(CONFIG_SPL_START_FILE)) >> else >> START := $(CPUDIR)/start.o >> endif >> >> START_PATH := $(dir $(START)) >> >>> LIBS-y

Re: [U-Boot] [PATCH 1/2] SPL: Make path to start.S configurable

2011-09-15 Thread Marek Vasut
On Friday, September 16, 2011 12:54:26 AM Scott Wood wrote: > On 09/11/2011 10:56 PM, Marek Vasut wrote: > > Introduce CONFIG_SPL_START_S_PATH to configure path to start.S file. It's > > not always fitting to use CPU's start.S . > > > > Signed-off-by: Marek Vasut > > --- > > > > spl/Makefile |

Re: [U-Boot] [PATCH 1/2] SPL: Make path to start.S configurable

2011-09-15 Thread Scott Wood
On 09/11/2011 10:56 PM, Marek Vasut wrote: > Introduce CONFIG_SPL_START_S_PATH to configure path to start.S file. It's not > always fitting to use CPU's start.S . > > Signed-off-by: Marek Vasut > --- > spl/Makefile | 10 -- > 1 files changed, 8 insertions(+), 2 deletions(-) > > diff -

[U-Boot] [PATCH 1/2] SPL: Make path to start.S configurable

2011-09-11 Thread Marek Vasut
Introduce CONFIG_SPL_START_S_PATH to configure path to start.S file. It's not always fitting to use CPU's start.S . Signed-off-by: Marek Vasut --- spl/Makefile | 10 -- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/spl/Makefile b/spl/Makefile index 95ecce1..56d8ea1 100