Re: [U-Boot] [PATCH] spl: mmc: fix build without CONFIG_SPL_LIBCOMMON_SUPPORT

2016-11-17 Thread Yann E. MORIN
Jaehoon, All, On 2016-11-17 17:09 +0900, Jaehoon Chung spake thusly: > On 11/14/2016 06:46 AM, Yann E. MORIN wrote: > > When CONFIG_SPL_LIBCOMMON_SUPPORT is disabled, the last case statement > > is missing a proper statement, which makes the compiler whine. > > > > Si

Re: [U-Boot] [PATCH] cmd: move CMD_PXE to Kconfig

2016-11-17 Thread Yann E. MORIN
Peter, All, On 2016-11-16 14:04 +, Peter Robinson spake thusly: > On Sun, Nov 13, 2016 at 8:59 PM, Yann E. MORIN > wrote: > > Currently, CMD_PXE is forcibly enabled in config_distro_defaults.h, so > > that general purpose distributions can rely on it being defined.

Re: [U-Boot] [PATCH] cmd: move CMD_PXE to Kconfig

2016-11-15 Thread Yann E. MORIN
Joe, All, On 2016-11-14 21:15 -0600, Joe Hershberger spake thusly: > On Sun, Nov 13, 2016 at 2:59 PM, Yann E. MORIN > wrote: > > Currently, CMD_PXE is forcibly enabled in config_distro_defaults.h, so > > that general purpose distributions can rely on it being defined.

Re: [U-Boot] Stepping down as sunxi u-boot custodian (for real this time)

2016-11-14 Thread Yann E. MORIN
will also > unsubscribe myself from the u-boot list to protect myself > against getting dragged in again. Don't forget to update (or get updated) the list of custodians on the website (which is where I found the in

[U-Boot] [PATCH] spl: mmc: fix build without CONFIG_SPL_LIBCOMMON_SUPPORT

2016-11-13 Thread Yann E. MORIN
When CONFIG_SPL_LIBCOMMON_SUPPORT is disabled, the last case statement is missing a proper statement, which makes the compiler whine. Signed-off-by: "Yann E. MORIN" Cc: Pantelis Antoniou --- common/spl/spl_mmc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/common/spl/spl_mmc.

[U-Boot] [PATCH] fastboot: simplify the Kconfig logic

2016-11-13 Thread Yann E. MORIN
menuconfig" rather than a mere "config", so that all dependent options gets groupped under a menu. The layout is now: *** FASTBOOT *** [*] Fastboot support ---> Signed-off-by: "Yann E. MORIN" Cc: Simon Glass --- cmd/fastboot/Kconfig | 9 - 1 file

[U-Boot] [PATCH] cmd: move CMD_PXE to Kconfig

2016-11-13 Thread Yann E. MORIN
non-configurable. But it turns out we already have a config option to build a distro-ready image, in the name of DISTRO_DEFAULTS. Move CMD_PXE out of the hard-coded config_distro_defaults.h into a Kconfig option, that gets selected by DISTRO_DEFAULTS when it is set. Signed-off-by: "Yann E.

Re: [U-Boot] [PATCH] arm: sunxi: do not force USB for arch-sunxi

2016-11-10 Thread Yann E. MORIN
Hans, All, On 2016-11-10 20:10 +0100, Hans de Goede spake thusly: > On 10-11-16 19:00, Yann E. MORIN wrote: > >Ian, Hans, All, > > > >On 2016-10-31 22:33 +0100, Yann E. MORIN spake thusly: > >>Currently, USB is forced-enabled for the sunxi familly, and the

Re: [U-Boot] [PATCH] arm: sunxi: do not force USB for arch-sunxi

2016-11-10 Thread Yann E. MORIN
Ian, Hans, All, On 2016-10-31 22:33 +0100, Yann E. MORIN spake thusly: > Currently, USB is forced-enabled for the sunxi familly, and there is no > way to disable it. > > However, USB takes a long time to initiliase, delaying the boot by up to > 5 seconds (without any USB device a

[U-Boot] [PATCH] arm: sunxi: do not force USB for arch-sunxi

2016-11-01 Thread Yann E. MORIN
, sunxi H3). Signed-off-by: "Yann E. MORIN" Cc: Ian Campbell Cc: Hans De Goede --- This is a tentative patch, acting as an RFC (unless it is good to go as is, of course!). This has been discussed on IRC with and , and this solution is what emerged from the discussions as a first st