diff options
author | Denis Vlasenko | 2007-06-21 12:57:29 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-06-21 12:57:29 +0000 |
commit | d67a6064893a6d9f36539a66ba897840b811f219 (patch) | |
tree | ba64c00d8bbcf337284c5e26bc6ab9b38e311f94 /scripts/kconfig/confdata.c | |
parent | 931de892cc1c07ba3ce728cce3e4a64fe59c8444 (diff) | |
download | busybox-d67a6064893a6d9f36539a66ba897840b811f219.zip busybox-d67a6064893a6d9f36539a66ba897840b811f219.tar.gz |
build system: remove kernel .config locations (spotted by walter harms <wharms@bfs.de>)
Diffstat (limited to 'scripts/kconfig/confdata.c')
-rw-r--r-- | scripts/kconfig/confdata.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c index f3f76dd..79bb4a3 100644 --- a/scripts/kconfig/confdata.c +++ b/scripts/kconfig/confdata.c @@ -25,10 +25,7 @@ const char conf_def_filename[] = ".config"; const char conf_defname[] = "scripts/defconfig"; const char *conf_confnames[] = { - ".config", - "/lib/modules/$UNAME_RELEASE/.config", - "/etc/busybox-config", - "/boot/config-$UNAME_RELEASE", + conf_def_filename, conf_defname, NULL, }; |