12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- config ADKVERSION
- string
- option env="ADKVERSION"
- config MODULES
- bool
- default y
- config ADK_HAVE_DOT_CONFIG
- bool
- default y
- mainmenu "OpenADK Configuration"
- config ADK_CHOOSE_TARGET_SYSTEM
- boolean
- default y if ADK_CHOOSE_TARGET_SYSTEM_ARM
- default y if ADK_CHOOSE_TARGET_SYSTEM_ARMEB
- default y if ADK_CHOOSE_TARGET_SYSTEM_CRIS
- default y if ADK_CHOOSE_TARGET_SYSTEM_MIPS
- default y if ADK_CHOOSE_TARGET_SYSTEM_MIPSEL
- default y if ADK_CHOOSE_TARGET_SYSTEM_MIPS64
- default y if ADK_CHOOSE_TARGET_SYSTEM_MIPS64EL
- default y if ADK_CHOOSE_TARGET_SYSTEM_PPC
- default y if ADK_CHOOSE_TARGET_SYSTEM_PPC64
- default y if ADK_CHOOSE_TARGET_SYSTEM_SPARC
- default y if ADK_CHOOSE_TARGET_SYSTEM_SPARC64
- default y if ADK_CHOOSE_TARGET_SYSTEM_X86
- default y if ADK_CHOOSE_TARGET_SYSTEM_X86_64
- default n
- source "target/config/Config.in"
- menu "Runtime configuration"
- depends on !ADK_TOOLCHAIN_ONLY && !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_SYSTEM
- source "target/config/Config.in.runtime"
- endmenu
- menu "Package collection"
- depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_SYSTEM
- source "target/packages/Config.in"
- endmenu
- menu "Package selection"
- depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_SYSTEM
- source "package/Config.in.auto.global"
- source "package/Config.in.auto"
- endmenu
- menu "Kernel configuration"
- depends on !ADK_TOOLCHAIN_ONLY && !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_SYSTEM
- source "target/linux/Config.in"
- endmenu
- source "target/config/Config.in.adk"
|