aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/config/kconfig_load.c
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-04-18 12:05:16 +0000
committerFelix Fietkau <nbd@openwrt.org>2013-04-18 12:05:16 +0000
commite1c27ce98544acbbd0689f589500c8dce2e5f67c (patch)
tree0cf2e21dbb0e93a4300184f3aedde745ef27c277 /scripts/config/kconfig_load.c
parent6a47391ec7925494db97afb26a9f52baf0047548 (diff)
downloadupstream-e1c27ce98544acbbd0689f589500c8dce2e5f67c.tar.gz
upstream-e1c27ce98544acbbd0689f589500c8dce2e5f67c.tar.bz2
upstream-e1c27ce98544acbbd0689f589500c8dce2e5f67c.zip
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 dbdcaad823..0000000000
--- 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
-}