xref: /OK3568_Linux_fs/buildroot/package/linux-backports/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyuncomment "linux-backports needs a Linux kernel to be built"
2*4882a593Smuzhiyun	depends on !BR2_LINUX_KERNEL
3*4882a593Smuzhiyun
4*4882a593Smuzhiyunconfig BR2_PACKAGE_LINUX_BACKPORTS
5*4882a593Smuzhiyun	bool "linux-backports"
6*4882a593Smuzhiyun	depends on BR2_LINUX_KERNEL
7*4882a593Smuzhiyun	help
8*4882a593Smuzhiyun	  The linux-backports package includes many Linux drivers from
9*4882a593Smuzhiyun	  recent kernels, backported to older ones.
10*4882a593Smuzhiyun
11*4882a593Smuzhiyun	  This version of linux-backports supports kernels starting
12*4882a593Smuzhiyun	  from 3.10.
13*4882a593Smuzhiyun
14*4882a593Smuzhiyun	  https://backports.wiki.kernel.org
15*4882a593Smuzhiyun
16*4882a593Smuzhiyunif BR2_PACKAGE_LINUX_BACKPORTS
17*4882a593Smuzhiyun
18*4882a593Smuzhiyunchoice
19*4882a593Smuzhiyun	prompt "Linux kernel driver backports configuration"
20*4882a593Smuzhiyun	default BR2_PACKAGE_LINUX_BACKPORTS_USE_DEFCONFIG
21*4882a593Smuzhiyun
22*4882a593Smuzhiyunconfig BR2_PACKAGE_LINUX_BACKPORTS_USE_DEFCONFIG
23*4882a593Smuzhiyun	bool "Using an in-tree defconfig file"
24*4882a593Smuzhiyun
25*4882a593Smuzhiyunconfig BR2_PACKAGE_LINUX_BACKPORTS_USE_CUSTOM_CONFIG
26*4882a593Smuzhiyun	bool "Using a custom (def)config file"
27*4882a593Smuzhiyun
28*4882a593Smuzhiyunendchoice
29*4882a593Smuzhiyun
30*4882a593Smuzhiyunconfig BR2_PACKAGE_LINUX_BACKPORTS_DEFCONFIG
31*4882a593Smuzhiyun	string "Defconfig name"
32*4882a593Smuzhiyun	depends on BR2_PACKAGE_LINUX_BACKPORTS_USE_DEFCONFIG
33*4882a593Smuzhiyun	help
34*4882a593Smuzhiyun	  Name of the backports defconfig file to use, without the
35*4882a593Smuzhiyun	  leading defconfig-. The defconfig is located in defconfigs/
36*4882a593Smuzhiyun	  directory in the backports tree.
37*4882a593Smuzhiyun
38*4882a593Smuzhiyunconfig BR2_PACKAGE_LINUX_BACKPORTS_CUSTOM_CONFIG_FILE
39*4882a593Smuzhiyun	string "Configuration file path"
40*4882a593Smuzhiyun	depends on BR2_PACKAGE_LINUX_BACKPORTS_USE_CUSTOM_CONFIG
41*4882a593Smuzhiyun	help
42*4882a593Smuzhiyun	  Path to the backports configuration file
43*4882a593Smuzhiyun
44*4882a593Smuzhiyun	  Note: this can be a defconfig file or a complete .config
45*4882a593Smuzhiyun	  file, which can later be saved back with make
46*4882a593Smuzhiyun	  linux-update-(def)config.
47*4882a593Smuzhiyun
48*4882a593Smuzhiyunconfig BR2_PACKAGE_LINUX_BACKPORTS_CONFIG_FRAGMENT_FILES
49*4882a593Smuzhiyun	string "Additional configuration fragment files"
50*4882a593Smuzhiyun	help
51*4882a593Smuzhiyun	  A space-separated list of configuration fragment files, that
52*4882a593Smuzhiyun	  will be merged to the main linux-backports configuration file.
53*4882a593Smuzhiyun
54*4882a593Smuzhiyunendif # BR2_PACKAGE_LINUX_BACKPORTS
55