1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- # global symbols
- config ADK_LINUX_64
- bool
- config ADK_TARGET_KERNEL_64
- bool
- config ADK_TOOLCHAIN_ONLY
- bool
- config ADK_TARGET_TOOLCHAIN
- bool
- config ADK_TARGET_UCLINUX
- bool
- select ADK_PACKAGE_SASH
- select ADK_PACKAGE_SIMPLEINIT
- config ADK_TARGET_QEMU
- bool
- select ADK_TARGET_WITH_SERIAL
- config ADK_TARGET_VBOX
- bool
- config ADK_TARGET_ARCH_ARM_WITH_THUMB
- bool
- select ADK_KERNEL_THUMB2_KERNEL
- depends on ADK_TARGET_ARCH_ARM
- # the inverse of ADK_TARGET_KERNEL_CUSTOMISING,
- # allows for selecting it off (i.e., to disable it)
- config ADK_TARGET_FIXED_KERNEL
- bool
- config ADK_TARGET_KERNEL_CUSTOMISING
- bool
- depends on !ADK_TARGET_FIXED_KERNEL
- default y
- source "target/config/Config.in.tools"
|