package/dhcp/S80dhcp-server: allow empty INTERFACES
[buildroot-gz.git] / package / linux-backports / Config.in
blobe858a45abc508b6d8811de72087896013fd56af9
1 comment "linux-backports needs a Linux kernel to be built"
2         depends on !BR2_LINUX_KERNEL
4 config BR2_PACKAGE_LINUX_BACKPORTS
5         bool "linux-backports"
6         depends on BR2_LINUX_KERNEL
7         help
8           The linux-backports package includes many Linux drivers from
9           recent kernels, backported to older ones.
11           This version of linux-backports supports kernels starting from 3.0.
13           https://backports.wiki.kernel.org
15 if BR2_PACKAGE_LINUX_BACKPORTS
17 choice
18         prompt "Linux kernel driver backports configuration"
19         default BR2_PACKAGE_LINUX_BACKPORTS_USE_DEFCONFIG
21 config BR2_PACKAGE_LINUX_BACKPORTS_USE_DEFCONFIG
22         bool "Using an in-tree defconfig file"
24 config BR2_PACKAGE_LINUX_BACKPORTS_USE_CUSTOM_CONFIG
25         bool "Using a custom (def)config file"
27 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.
37 config BR2_PACKAGE_LINUX_BACKPORTS_CUSTOM_CONFIG_FILE
38         string "Configuration file path"
39         depends on BR2_PACKAGE_LINUX_BACKPORTS_USE_CUSTOM_CONFIG
40         help
41           Path to the backports configuration file
43           Note: this can be a defconfig file or a complete .config file,
44           which can later be saved back with make linux-update-(def)config.
46 config BR2_PACKAGE_LINUX_BACKPORTS_CONFIG_FRAGMENT_FILES
47         string "Additional configuration fragment files"
48         help
49           A space-separated list of configuration fragment files, that
50           will be merged to the main linux-backports configuration file.
52 endif # BR2_PACKAGE_LINUX_BACKPORTS