Config.in 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. comment "linux-backports needs a Linux kernel to be built"
  2. depends on !BR2_LINUX_KERNEL
  3. config BR2_PACKAGE_LINUX_BACKPORTS
  4. bool "linux-backports"
  5. depends on BR2_LINUX_KERNEL
  6. help
  7. The linux-backports package includes many Linux drivers from
  8. recent kernels, backported to older ones.
  9. https://backports.wiki.kernel.org
  10. if BR2_PACKAGE_LINUX_BACKPORTS
  11. choice
  12. prompt "Linux Backports version"
  13. default BR2_PACKAGE_LINUX_BACKPORTS_5_15_X
  14. help
  15. Select the highest version that supports your kernel version.
  16. config BR2_PACKAGE_LINUX_BACKPORTS_5_15_X
  17. bool "5.15.x (for kernels back to 4.4)"
  18. config BR2_PACKAGE_LINUX_BACKPORTS_5_10_X
  19. bool "5.10.x (for kernels back to 3.10)"
  20. endchoice
  21. choice
  22. prompt "Linux kernel driver backports configuration"
  23. default BR2_PACKAGE_LINUX_BACKPORTS_USE_DEFCONFIG
  24. config BR2_PACKAGE_LINUX_BACKPORTS_USE_DEFCONFIG
  25. bool "Using an in-tree defconfig file"
  26. config BR2_PACKAGE_LINUX_BACKPORTS_USE_CUSTOM_CONFIG
  27. bool "Using a custom (def)config file"
  28. endchoice
  29. config BR2_PACKAGE_LINUX_BACKPORTS_DEFCONFIG
  30. string "Defconfig name"
  31. depends on BR2_PACKAGE_LINUX_BACKPORTS_USE_DEFCONFIG
  32. help
  33. Name of the backports defconfig file to use, without the
  34. leading defconfig-. The defconfig is located in defconfigs/
  35. directory in the backports tree.
  36. config BR2_PACKAGE_LINUX_BACKPORTS_CUSTOM_CONFIG_FILE
  37. string "Configuration file path"
  38. depends on BR2_PACKAGE_LINUX_BACKPORTS_USE_CUSTOM_CONFIG
  39. help
  40. Path to the backports configuration file
  41. Note: this can be a defconfig file or a complete .config
  42. file, which can later be saved back with make
  43. linux-update-(def)config.
  44. config BR2_PACKAGE_LINUX_BACKPORTS_CONFIG_FRAGMENT_FILES
  45. string "Additional configuration fragment files"
  46. help
  47. A space-separated list of configuration fragment files, that
  48. will be merged to the main linux-backports configuration file.
  49. endif # BR2_PACKAGE_LINUX_BACKPORTS