Config.in.kernelcfg 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 "Kernel configuration" if !ADK_TARGET_CHOOSE_ARCH
  5. depends on ADK_TARGET_OS_LINUX
  6. default ADK_TARGET_KERNEL_USE_DEFCONFIG if ADK_TARGET_SYSTEM_BEAGLEBONE_BLACK && ADK_TARGET_KERNEL_VERSION_GIT
  7. default ADK_TARGET_KERNEL_USE_DEFCONFIG if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6 && ADK_TARGET_KERNEL_VERSION_GIT
  8. default ADK_TARGET_KERNEL_USE_DEFCONFIG if ADK_TARGET_SYSTEM_SOLIDRUN_CLEARFOG && ADK_TARGET_KERNEL_VERSION_GIT
  9. default ADK_TARGET_KERNEL_USE_DEFCONFIG if ADK_TARGET_BOARD_BCM28XX && ADK_TARGET_KERNEL_VERSION_GIT
  10. config ADK_TARGET_KERNEL_USE_MINICONFIG
  11. bool "Use mini.config from OpenADK"
  12. config ADK_TARGET_KERNEL_USE_DEFCONFIG
  13. bool "Use defconfig from Linux kernel"
  14. config ADK_TARGET_KERNEL_USE_CUSTOMCONFIG
  15. bool "Use custom Linux kernel configuration file"
  16. endchoice
  17. config ADK_TARGET_KERNEL_DEFCONFIG
  18. string "Defconfig name"
  19. depends on ADK_TARGET_KERNEL_USE_DEFCONFIG
  20. default "bcmrpi_defconfig" if ADK_TARGET_SYSTEM_RASPBERRY_PI
  21. default "bcm2709_defconfig" if ADK_TARGET_SYSTEM_RASPBERRY_PI2
  22. default "bcm2709_defconfig" if ADK_TARGET_SYSTEM_RASPBERRY_PI3
  23. default "twr-k70f120m_defconfig" if ADK_TARGET_SYSTEM_KINETIS_K70
  24. default "imx_v7_cbi_hb_defconfig" if ADK_TARGET_SYSTEM_SOLIDRUN_IMX6
  25. default "mvebu_extra_defconfig" if ADK_TARGET_SYSTEM_SOLIDRUN_CLEARFOG
  26. default "nsim_700_defconfig" if ADK_TARGET_SYSTEM_NSIM_ARCV1
  27. default "nsim_hs_defconfig" if ADK_TARGET_SYSTEM_NSIM_ARCV2
  28. default "10m50_defconfig" if ADK_TARGET_SYSTEM_QEMU_NIOS2
  29. default "orca_defconfig" if ADK_TARGET_SYSTEM_ANDES_AG101P
  30. default "bb.org_defconfig" if ADK_TARGET_SYSTEM_BEAGLEBONE_BLACK
  31. default "j2_defconfig" if ADK_TARGET_SYSTEM_NUMATO_MIMASV2
  32. default ""
  33. config ADK_TARGET_KERNEL_CUSTOMCONFIG_PATH
  34. string "Kernel configuration file location"
  35. depends on ADK_TARGET_KERNEL_USE_CUSTOMCONFIG
  36. default ".kernelconfig"