From d47108caf6e630f24fde37c439c1db31d209b25a Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 9 Mar 2005 17:39:38 +0000 Subject: Fix /http://bugs.uclibc.org/view.php?id=134 The configuration utility in package/config/ can look for a default configuration file called 'defconfig' but it's hard coded to look for sysdeps/linux/defconfig. This patch causes the config utility to look in the current working directory for the 'defconfig' file. I use this to provide a default configuration to a new buildroot environment. This way, I can 'svn co' buildroot, copy my defconfig, then make defconfig to use my own default configuration. This fix only changes one line in the confdata.c file to remove the legacy path that was used in Linux, and not needed in buildroot. --- package/config/confdata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'package/config') diff --git a/package/config/confdata.c b/package/config/confdata.c index fd3a345e2..27b6a961f 100644 --- a/package/config/confdata.c +++ b/package/config/confdata.c @@ -15,7 +15,7 @@ const char conf_def_filename[] = ".config"; -const char conf_defname[] = "sysdeps/linux/defconfig"; +const char conf_defname[] = "defconfig"; const char *conf_confnames[] = { ".config", -- cgit v1.2.3