Config.ext.in 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. menu "Linux Kernel Extensions"
  2. # Xenomai
  3. config BR2_LINUX_KERNEL_EXT_XENOMAI
  4. bool "Adeos/Xenomai Real-time patch"
  5. depends on BR2_TOOLCHAIN_HAS_THREADS
  6. depends on BR2_i386 || BR2_x86_64 || BR2_arm || \
  7. BR2_bfin || BR2_powerpc || BR2_sh4
  8. select BR2_PACKAGE_XENOMAI
  9. help
  10. Xenomai Kernel part.
  11. In the current version of Xenomai, the following kernel
  12. versions are supported: on Blackfin, 2.6.34 and 2.6.36.9, on
  13. SH4, 2.6.32.10, on x86, 2.6.35.9, 2.6.37.6, 2.6.38.8, on
  14. ARM, 2.6.35.9, 2.6.37.6, 2.6.38.8, on NIOS2, 2.6.35, on
  15. PowerPC, 2.6.35.7, 2.6.36.4, 3.0.8.
  16. comment "xenomai requires thread support in toolchain"
  17. depends on !BR2_TOOLCHAIN_HAS_THREADS
  18. config BR2_LINUX_KERNEL_EXT_XENOMAI_ADEOS_PATCH
  19. depends on BR2_LINUX_KERNEL_EXT_XENOMAI
  20. string "Path for Adeos patch file"
  21. help
  22. Optionally, explicitly specify the Adeos patch to use.
  23. Download it at http://download.gna.org/adeos/patches/v2.6/$(ARCH)/
  24. and verify that your kernel version in buildroot matches.
  25. # RTAI
  26. config BR2_LINUX_KERNEL_EXT_RTAI
  27. bool "RTAI Real-time patch"
  28. select BR2_PACKAGE_RTAI
  29. help
  30. RTAI Kernel part.
  31. config BR2_LINUX_KERNEL_EXT_RTAI_PATCH
  32. depends on BR2_LINUX_KERNEL_EXT_RTAI
  33. string "Path for RTAI patch file"
  34. help
  35. Optionally, explicitly specify the RTAI patch to use.
  36. endmenu