Re: [U-Boot] [PATCH 04/11] kconfig: add basic Kconfig files

2014-05-06 Thread Masahiro Yamada
Hi Scott, On Thu, 1 May 2014 13:21:08 -0500 Scott Wood wrote: > On Thu, 2014-04-24 at 14:04 +0900, Masahiro Yamada wrote: > > +config KCONFIG_OBJDIR > > + string > > + option env="KCONFIG_OBJDIR" > > + > > +config BUILD_MODE > > + string > > + default "SPL" if $KCONFIG_OBJDIR="spl/" > >

Re: [U-Boot] [PATCH 04/11] kconfig: add basic Kconfig files

2014-05-01 Thread Scott Wood
On Thu, 2014-04-24 at 14:04 +0900, Masahiro Yamada wrote: > +config KCONFIG_OBJDIR > + string > + option env="KCONFIG_OBJDIR" > + > +config BUILD_MODE > + string > + default "SPL" if $KCONFIG_OBJDIR="spl/" > + default "TPL" if $KCONFIG_OBJDIR="tpl/" > + default "Main" Why d

Re: [U-Boot] [PATCH 04/11] kconfig: add basic Kconfig files

2014-05-01 Thread Scott Wood
On Wed, 2014-04-30 at 12:16 -0700, Simon Glass wrote: > Hi Masahiro, > > On 29 April 2014 21:22, Masahiro Yamada wrote: > > Hi Simon, > > > >> > + > >> > +config SPL_BUILD > >> > + bool > >> > + depends on BUILD_MODE="SPL" || BUILD_MODE="TPL" > >> > >> What is the TPL term for? > > >

Re: [U-Boot] [PATCH 04/11] kconfig: add basic Kconfig files

2014-04-30 Thread Simon Glass
Hi Masahiro, On 29 April 2014 21:22, Masahiro Yamada wrote: > Hi Simon, > >> > + >> > +config SPL_BUILD >> > + bool >> > + depends on BUILD_MODE="SPL" || BUILD_MODE="TPL" >> >> What is the TPL term for? > > Please note that both CONFIG_SPL_BUILD and CONFIG_TPL_BUILD > must be defined

Re: [U-Boot] [PATCH 04/11] kconfig: add basic Kconfig files

2014-04-29 Thread Masahiro Yamada
Hi Simon, > > + > > +config SPL_BUILD > > + bool > > + depends on BUILD_MODE="SPL" || BUILD_MODE="TPL" > > What is the TPL term for? Please note that both CONFIG_SPL_BUILD and CONFIG_TPL_BUILD must be defined during the build of TPL image. To sum up in a matrix, the definition of th

Re: [U-Boot] [PATCH 04/11] kconfig: add basic Kconfig files

2014-04-28 Thread Simon Glass
HI Masahiro, On 23 April 2014 23:04, Masahiro Yamada wrote: > This commit adds more Kconfig files, which were written by hand. > > Signed-off-by: Masahiro Yamada > --- > > Kconfig | 47 +++ > arch/Kconfig | 66 > +