* [PATCH 1/1] Search for defconfigs in target, not entire tree
@ 2007-06-22 11:53 Hans-Christian Egtvedt
0 siblings, 0 replies; only message in thread
From: Hans-Christian Egtvedt @ 2007-06-22 11:53 UTC (permalink / raw)
To: buildroot
This patch changes the way the top level Makefile searches for a
<board>_defconfig file, it will only look in the target/ directory and its sub
directories.
The patch also enables loading a defconfig even if there already is a .config.
Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
---
Makefile | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/Makefile b/Makefile
index 1285144..1517653 100644
--- a/Makefile
+++ b/Makefile
@@ -191,10 +191,6 @@ allnoconfig: $(CONFIG)/conf
defconfig: $(CONFIG)/conf
@$(CONFIG)/conf -d $(CONFIG_CONFIG_IN)
-%_defconfig: $(CONFIG)/conf
- cp $(shell find . -name $@) .config
- @$(CONFIG)/conf -o $(CONFIG_CONFIG_IN)
-
#############################################################
#
# Cleanup and misc junk
@@ -209,6 +205,10 @@ distclean: clean
endif # ifeq ($(strip $(BR2_HAVE_DOT_CONFIG)),y)
+%_defconfig: $(CONFIG)/conf
+ cp $(shell find target/ -name $@) .config
+ @$(CONFIG)/conf -o $(CONFIG_CONFIG_IN)
+
.PHONY: dummy subdirs release distclean clean config oldconfig \
menuconfig tags check test depend defconfig
--
1.4.4.2
--=-GryXooXpkmpk+Kv25C72--
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2007-06-22 11:53 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-22 11:53 [PATCH 1/1] Search for defconfigs in target, not entire tree Hans-Christian Egtvedt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox