summaryrefslogtreecommitdiff
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
commit9d5510a500a1804484152adb8951dda3688658bc (patch)
tree6e4d8725c2956742201d0e14126f7e457b453c66 /scripts/config/kconfig_load.c
parent97e7fdf6fdb8a91da52f622b499181171262af19 (diff)
downloadmtk-20170518-9d5510a500a1804484152adb8951dda3688658bc.zip
mtk-20170518-9d5510a500a1804484152adb8951dda3688658bc.tar.gz
mtk-20170518-9d5510a500a1804484152adb8951dda3688658bc.tar.bz2
build: add new menuconfig code based on linux 3.9
SVN-Revision: 36361
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 dbdcaad..0000000
--- 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
-}