summaryrefslogtreecommitdiffstats
path: root/scripts/config/kconfig_load.c
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-04-18 12:05:16 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-04-18 12:05:16 +0000
commitf6a0204436d51e2227a1b9c8f0463936a9c03f0a (patch)
tree0cf2e21dbb0e93a4300184f3aedde745ef27c277 /scripts/config/kconfig_load.c
parent976215a02136bd8bbc7df77c2880ac3ce1e4eedc (diff)
build: add new menuconfig code based on linux 3.9
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36361 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts/config/kconfig_load.c')
-rw-r--r--scripts/config/kconfig_load.c35
1 files changed, 0 insertions, 35 deletions
diff --git a/scripts/config/kconfig_load.c b/scripts/config/kconfig_load.c
deleted file mode 100644
index dbdcaad82..000000000
--- a/scripts/config/kconfig_load.c
+++ /dev/null
@@ -1,35 +0,0 @@
-#include <dlfcn.h>
-#include <stdio.h>
-#include <stdlib.h>
-
-#include "lkc.h"
-
-#define P(name,type,arg) type (*name ## _p) arg
-#include "lkc_proto.h"
-#undef P
-
-void kconfig_load(void)
-{
- void *handle;
- char *error;
-
- handle = dlopen("./libkconfig.so", RTLD_LAZY);
- if (!handle) {
- handle = dlopen("./scripts/kconfig/libkconfig.so", RTLD_LAZY);
- if (!handle) {
- fprintf(stderr, "%s\n", dlerror());
- exit(1);
- }
- }
-
-#define P(name,type,arg) \
-{ \
- name ## _p = dlsym(handle, #name); \
- if ((error = dlerror())) { \
- fprintf(stderr, "%s\n", error); \
- exit(1); \
- } \
-}
-#include "lkc_proto.h"
-#undef P
-}