diff options
Diffstat (limited to 'target/config/Config.in.adk')
-rw-r--r-- | target/config/Config.in.adk | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/target/config/Config.in.adk b/target/config/Config.in.adk new file mode 100644 index 000000000..18d4a2023 --- /dev/null +++ b/target/config/Config.in.adk @@ -0,0 +1,81 @@ +menu "Global settings" + +config ADK_VENDOR + string "vendor name" + default "openadk" + help + Vendor string is used for toolchain. + +config ADK_HOST + string "webserver for packages and distfiles" + default "www.openadk.org" + help + Configure host for IPKG package management. + +config ADK_DEBUG + bool "Compile applications with debug support by default" + default n + help + All packages and libc will be compiled and packaged with debug information. + Mostly useful for NFS root or big USB/CF or hard disk setups. + +config ADK_STATIC + bool "Link applications statically by default" + default n + help + Useful for toolchain only target devices. + +config ADK_MAKE_JOBS + int + default 1 if ! ADK_MAKE_PARALLEL + +config ADK_MAKE_PARALLEL + prompt "Enable parallel building of packages" + boolean + +config ADK_MAKE_JOBS + prompt "How many jobs to use" + int + default 2 + depends on ADK_MAKE_PARALLEL + help + The number specified here will be passed to make as N in '-jN' + +config ADK_TARGET_IP + prompt "Set target ip address for make check" + string + default "127.0.0.1" + help + +choice +prompt "Hostsystem (do not change!)" +config ADK_HOST_LINUX + prompt "Linux" + boolean + +config ADK_HOST_FREEBSD + prompt "FreeBSD" + boolean + +config ADK_HOST_MIRBSD + prompt "MirBSD" + boolean + +config ADK_HOST_OPENBSD + prompt "OpenBSD" + boolean + +config ADK_HOST_NETBSD + prompt "NetBSD" + boolean + +config ADK_HOST_DARWIN + prompt "Darwin" + boolean + +config ADK_HOST_CYGWIN + prompt "Cygwin" + boolean + +endchoice +endmenu |