All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] kconfig: fix a bug of savedefconfig
@ 2014-09-03  4:51 Masahiro Yamada
  2014-09-03 16:37 ` Simon Glass
  0 siblings, 1 reply; 2+ messages in thread
From: Masahiro Yamada @ 2014-09-03  4:51 UTC (permalink / raw)
  To: u-boot

Commit 3ff291f371fa9858426774f3732924bacb61ed1c
(kconfig: convert Kconfig helper script into a shell script)
introduced a minor bug.

make alldefconfig && make savedefconfig
should create an empty 'defconfig'.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
---

 scripts/multiconfig.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/multiconfig.sh b/scripts/multiconfig.sh
index 4190798..785f563 100644
--- a/scripts/multiconfig.sh
+++ b/scripts/multiconfig.sh
@@ -217,6 +217,7 @@ do_savedefconfig () {
 	done
 
 	rm -f defconfig
+	touch defconfig
 	for line in $output_lines
 	do
 		echo $line >> defconfig
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [U-Boot] [PATCH] kconfig: fix a bug of savedefconfig
  2014-09-03  4:51 [U-Boot] [PATCH] kconfig: fix a bug of savedefconfig Masahiro Yamada
@ 2014-09-03 16:37 ` Simon Glass
  0 siblings, 0 replies; 2+ messages in thread
From: Simon Glass @ 2014-09-03 16:37 UTC (permalink / raw)
  To: u-boot

On 2 September 2014 21:51, Masahiro Yamada <yamada.m@jp.panasonic.com> wrote:
> Commit 3ff291f371fa9858426774f3732924bacb61ed1c
> (kconfig: convert Kconfig helper script into a shell script)
> introduced a minor bug.
>
> make alldefconfig && make savedefconfig
> should create an empty 'defconfig'.
>
> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>

Acked-by: Simon Glass <sjg@chromium.org>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-09-03 16:37 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-03  4:51 [U-Boot] [PATCH] kconfig: fix a bug of savedefconfig Masahiro Yamada
2014-09-03 16:37 ` Simon Glass

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.