Re: [U-Boot] [PATCH 03/11] kconfig: add board Kconfig and defconfig files

2014-05-16 Thread Stephen Warren
On 05/16/2014 12:55 PM, Tom Rini wrote: > Wading in here later than I had wanted to, sorry. > > On Mon, Apr 28, 2014 at 06:39:33PM +0900, Masahiro Yamada wrote: ... >> But, if people don't like this, >> I can change this part as only one defconfig per board >> in the next version. >> (Instead, we

Re: [U-Boot] [PATCH 03/11] kconfig: add board Kconfig and defconfig files

2014-05-16 Thread Tom Rini
Wading in here later than I had wanted to, sorry. On Mon, Apr 28, 2014 at 06:39:33PM +0900, Masahiro Yamada wrote: > On Thu, 24 Apr 2014 14:36:33 -0600 > Stephen Warren wrote: > > On 04/23/2014 11:04 PM, Masahiro Yamada wrote: > > > This commit adds > > > - arch/*/Kconfig: provide a menu to sele

Re: [U-Boot] [PATCH 03/11] kconfig: add board Kconfig and defconfig files

2014-05-02 Thread Stephen Warren
On 05/01/2014 04:48 PM, Scott Wood wrote: > On Mon, 2014-04-28 at 11:47 -0600, Stephen Warren wrote: >> I guess the main issue I see here is that all the HW-configuration needs >> to be repeated in seaboard_defconfig and spl/seaboard_defconfig. >> >> (As an aside, if there's nothing special about S

Re: [U-Boot] [PATCH 03/11] kconfig: add board Kconfig and defconfig files

2014-05-02 Thread Timur Tabi
On Thu, Apr 24, 2014 at 12:04 AM, Masahiro Yamada wrote: > diff --git a/board/freescale/p1022ds/Kconfig b/board/freescale/p1022ds/Kconfig > new file mode 100644 > index 000..773ea52 > --- /dev/null > +++ b/board/freescale/p1022ds/Kconfig > @@ -0,0 +1,251 @@ > +if TARGET_P1022DS > + > +config

Re: [U-Boot] [PATCH 03/11] kconfig: add board Kconfig and defconfig files

2014-05-01 Thread Scott Wood
On Mon, 2014-04-28 at 11:47 -0600, Stephen Warren wrote: > I guess the main issue I see here is that all the HW-configuration needs > to be repeated in seaboard_defconfig and spl/seaboard_defconfig. > > (As an aside, if there's nothing special about SPL-vs-not and they're > just different builds o

Re: [U-Boot] [PATCH 03/11] kconfig: add board Kconfig and defconfig files

2014-04-28 Thread Stephen Warren
On 04/28/2014 03:39 AM, Masahiro Yamada wrote: > On Thu, 24 Apr 2014 14:36:33 -0600 > Stephen Warren wrote: >>> diff --git a/configs/seaboard_defconfig b/configs/seaboard_defconfig >>> new file mode 100644 >>> index 000..88819b9 >>> --- /dev/null >>> +++ b/configs/seaboard_defconfig >>> @@ -0

Re: [U-Boot] [PATCH 03/11] kconfig: add board Kconfig and defconfig files

2014-04-28 Thread Masahiro Yamada
Hi Stephen, On Thu, 24 Apr 2014 14:36:33 -0600 Stephen Warren wrote: > On 04/23/2014 11:04 PM, Masahiro Yamada wrote: > > This commit adds > > - arch/*/Kconfig: provide a menu to select target boards > > - board/*/Kconfig: set CONFIG macros to the appropriate values > > for each board

Re: [U-Boot] [PATCH 03/11] kconfig: add board Kconfig and defconfig files

2014-04-24 Thread Stephen Warren
On 04/23/2014 11:04 PM, Masahiro Yamada wrote: > This commit adds > - arch/*/Kconfig: provide a menu to select target boards > - board/*/Kconfig: set CONFIG macros to the appropriate values > for each board > - configs/*_defconfig: default setting of each board > > (This commit was auto