Re: [U-Boot] [PATCH v2] kconfig: show an error message when defconfig is not found

2014-10-01 Thread Masahiro YAMADA
Hi York. 2014-10-02 0:29 GMT+09:00 York Sun : >> + if [ ! -r $defconfig_path ]; then >> + echo >&2 "***" >> + echo >&2 "*** Can't find default configuration \"confis/$1\"!" > > s/confis/configs/ > Oops! Thanks for spotting this. Could send a patch, please? -- Be

Re: [U-Boot] [PATCH v2] kconfig: show an error message when defconfig is not found

2014-10-01 Thread York Sun
On 09/04/2014 06:16 AM, Masahiro Yamada wrote: > When a non-existing defconfig is specified, > display an easy-to-understand message > (fake the error message on Linux Kernel): > > $ make foo_defconfig > *** > *** Can't find default configuration "confis/foo_defconfig"! > *** > > Signed-o

Re: [U-Boot] [PATCH v2] kconfig: show an error message when defconfig is not found

2014-09-04 Thread Stephen Warren
On 09/04/2014 07:16 AM, Masahiro Yamada wrote: When a non-existing defconfig is specified, display an easy-to-understand message (fake the error message on Linux Kernel): $ make foo_defconfig *** *** Can't find default configuration "confis/foo_defconfig"! *** Acked-by: Stephen War

[U-Boot] [PATCH v2] kconfig: show an error message when defconfig is not found

2014-09-04 Thread Masahiro Yamada
When a non-existing defconfig is specified, display an easy-to-understand message (fake the error message on Linux Kernel): $ make foo_defconfig *** *** Can't find default configuration "confis/foo_defconfig"! *** Signed-off-by: Masahiro Yamada --- Changes in v2: - Echo the error mess