xref: /OK3568_Linux_fs/buildroot/package/sunxi-boards/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_SUNXI_BOARDS
2	bool "sunxi script.bin board file"
3	depends on BR2_arm
4	depends on BR2_HOST_GCC_AT_LEAST_4_9 # host-sunxi-tools
5	select BR2_PACKAGE_HOST_SUNXI_TOOLS
6	help
7	  Sunxi-boards requires a compiled .fex files for hardware
8	  description, used by the kernel during boot for hardware
9	  initialization. This package is specific for linux-sunxi
10	  kernel and it is useless for mainline kernel versions.
11
12	  https://github.com/linux-sunxi/sunxi-boards
13
14if BR2_PACKAGE_SUNXI_BOARDS
15config BR2_PACKAGE_SUNXI_BOARDS_FEX_FILE
16	string ".fex file to compile"
17	help
18	  This field defines the name of the .fex file for which the
19	  .bin file should be generated.
20
21	  This should be the path of the .fex file relative to the
22	  sys_config/ directory, and including the .fex extension.
23
24	  See inside sys_config/ directory in sunxi-boards source code
25	  to see the list of valid .fex files.
26endif
27
28comment "sunxi script.bin board file needs a toolchain w/ host gcc >= 4.9"
29	depends on BR2_arm
30	depends on !BR2_HOST_GCC_AT_LEAST_4_9
31