1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- config ADKVERSION
- string
- option env="ADKVERSION"
- mainmenu "OpenADK Configuration"
- config MODULES
- bool
- default y
- config ADK_HAVE_DOT_CONFIG
- bool
- default y
- menu "ADK settings"
- config ADK_DEVELSYSTEM
- bool "Compile a ADK development system"
- default n
- select ADK_CXX
- select ADK_PACKAGE_AUTOCONF
- select ADK_PACKAGE_AUTOMAKE
- select ADK_PACKAGE_BASH
- select ADK_PACKAGE_BINUTILS
- select ADK_PACKAGE_BISON
- select ADK_PACKAGE_BZIP2
- select ADK_PACKAGE_DIFFUTILS
- select ADK_PACKAGE_FILE
- select ADK_PACKAGE_FLEX
- select ADK_PACKAGE_GAWK
- select ADK_PACKAGE_GCC
- select ADK_PACKAGE_GIT
- select ADK_PACKAGE_GPERF
- select ADK_PACKAGE_UCLIBC_DEV if ADK_TARGET_LIB_UCLIBC
- select ADK_PACKAGE_EGLIBC_DEV if ADK_TARGET_LIB_EGLIBC
- select ADK_PACKAGE_GLIBC_DEV if ADK_TARGET_LIB_GLIBC
- select ADK_PACKAGE_LIBNCURSES
- select ADK_PACKAGE_LIBNCURSES_DEV
- select ADK_PACKAGE_LIBTOOL
- select ADK_PACKAGE_M4
- select ADK_PACKAGE_MAKE
- select ADK_PACKAGE_PATCH
- select ADK_PACKAGE_TAR
- select ADK_PACKAGE_ZLIB
- select ADK_PACKAGE_ZLIB_DEV
- help
- After bootstrapping a Linux system you might want to
- switch to native builds with your target.
- If you choose this option, all necessary software needed
- for native building will be selected.
- config ADK_MAKE_JOBS
- int
- default 1 if ! ADK_MAKE_PARALLEL
- config ADK_MAKE_PARALLEL
- prompt "Enable parallel building of packages that claim to support it"
- boolean
- default n
- 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_FORCE_PARALLEL
- prompt "Force parallel building of all packages (DANGEROUS)"
- bool
- default n
- depends on ADK_MAKE_PARALLEL
- help
- Do not enable this! It's for testing purposes only.
- endmenu
- source "target/Config.in"
- source "package/Config.in"
|