diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-04-18 12:05:16 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-04-18 12:05:16 +0000 |
commit | 9d5510a500a1804484152adb8951dda3688658bc (patch) | |
tree | 6e4d8725c2956742201d0e14126f7e457b453c66 /scripts/config/kconfig_load.c | |
parent | 97e7fdf6fdb8a91da52f622b499181171262af19 (diff) | |
download | upstream-9d5510a500a1804484152adb8951dda3688658bc.tar.gz upstream-9d5510a500a1804484152adb8951dda3688658bc.tar.bz2 upstream-9d5510a500a1804484152adb8951dda3688658bc.zip |
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.c | 35 |
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 -} |