Re: [U-Boot] [PATCH] powerpc/85xx: Move RESET_VECTOR_ADDRESS into config.h

2011-01-17 Thread Kumar Gala
On Jan 17, 2011, at 4:46 PM, Wolfgang Denk wrote: > Dear Kumar Gala, > > In message you > wrote: >> >> On Jan 12, 2011, at 3:27 AM, Wolfgang Denk wrote: >> >>> Dear Kumar Gala, >>> >>> In message > <1294824140-22519-1-git-send-email-ga...@kernel.crashing.org> >>> you wrote: Rather tha

Re: [U-Boot] [PATCH] powerpc/85xx: Move RESET_VECTOR_ADDRESS into config.h

2011-01-17 Thread Wolfgang Denk
Dear Kumar Gala, In message you wrote: > > On Jan 12, 2011, at 3:27 AM, Wolfgang Denk wrote: > > > Dear Kumar Gala, > > > > In message > <1294824140-22519-1-git-send-email-ga...@kernel.crashing.org> > > you wrote: > >> Rather than defining it config.mk we can set it in config.h and > remove >

Re: [U-Boot] [PATCH] powerpc/85xx: Move RESET_VECTOR_ADDRESS into config.h

2011-01-12 Thread Kumar Gala
On Jan 12, 2011, at 3:27 AM, Wolfgang Denk wrote: > Dear Kumar Gala, > > In message <1294824140-22519-1-git-send-email-ga...@kernel.crashing.org> you > wrote: >> Rather than defining it config.mk we can set it in config.h and remove >> config.mk from several boards that don't need it. >> >> We

Re: [U-Boot] [PATCH] powerpc/85xx: Move RESET_VECTOR_ADDRESS into config.h

2011-01-12 Thread Wolfgang Denk
Dear Kumar Gala, In message <1294824140-22519-1-git-send-email-ga...@kernel.crashing.org> you wrote: > Rather than defining it config.mk we can set it in config.h and remove > config.mk from several boards that don't need it. > > We mimic what 4xx does and introduce CONFIG_RESET_VECTOR_ADDRESS f

[U-Boot] [PATCH] powerpc/85xx: Move RESET_VECTOR_ADDRESS into config.h

2011-01-12 Thread Kumar Gala
Rather than defining it config.mk we can set it in config.h and remove config.mk from several boards that don't need it. We mimic what 4xx does and introduce CONFIG_RESET_VECTOR_ADDRESS for config.h to set. Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc85xx/u-boot.lds |8 +++- boar

Re: [U-Boot] [PATCH] powerpc/85xx: Move RESET_VECTOR_ADDRESS into config.h

2011-01-12 Thread Kumar Gala
On Jan 12, 2011, at 2:59 AM, Wolfgang Denk wrote: > Dear Kumar Gala, > > In message <1294822268-22266-1-git-send-email-ga...@kernel.crashing.org> you > wrote: >> >> #ifndef RESET_VECTOR_ADDRESS >> +#ifdef CONFIG_RESET_VECTOR_ADDRESS >> +#define RESET_VECTOR_ADDRESSCONFIG_RESET_VECTOR_A

Re: [U-Boot] [PATCH] powerpc/85xx: Move RESET_VECTOR_ADDRESS into config.h

2011-01-12 Thread Wolfgang Denk
Dear Kumar Gala, In message <1294822268-22266-1-git-send-email-ga...@kernel.crashing.org> you wrote: > > #ifndef RESET_VECTOR_ADDRESS > +#ifdef CONFIG_RESET_VECTOR_ADDRESS > +#define RESET_VECTOR_ADDRESS CONFIG_RESET_VECTOR_ADDRESS > +#else > #define RESET_VECTOR_ADDRESS 0xfffc > #endif >

[U-Boot] [PATCH] powerpc/85xx: Move RESET_VECTOR_ADDRESS into config.h

2011-01-12 Thread Kumar Gala
Rather than defining it config.mk we can set it in config.h and remove config.mk from several boards that don't need it. We mimic what 4xx does and introduce CONFIG_RESET_VECTOR_ADDRESS for config.h to set. Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc85xx/u-boot.lds |8 +++- boar