Config.in.os 441 B

123456789101112131415161718192021
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. choice
  4. prompt "Operating System"
  5. config ADK_TARGET_OS_LINUX
  6. bool "Linux"
  7. help
  8. Create a Linux system or toolchain.
  9. config ADK_TARGET_OS_BAREMETAL
  10. bool "Bare metal"
  11. help
  12. Create a bare metal appliance or toolchain.
  13. endchoice
  14. config ADK_TARGET_OS
  15. string
  16. default "linux" if ADK_TARGET_OS_LINUX