xref: /OK3568_Linux_fs/buildroot/package/sunxi-tools/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config BR2_PACKAGE_SUNXI_TOOLS
2	bool "sunxi-tools"
3	depends on BR2_arm
4	help
5	  Tools for Allwinner A10 (aka sun4i) and A13 (aka sun5i)
6	  based devices.
7
8	  http://linux-sunxi.org/Sunxi-tools
9
10if BR2_PACKAGE_SUNXI_TOOLS
11
12config BR2_PACKAGE_SUNXI_TOOLS_FEXC
13	bool "sunxi-fexc (fex2bin & bin2fex)"
14	help
15	  Convert between .fex board definition files and binary
16	  format. These tools are specific for the linux-sunxi kernel
17	  and do not apply to the mainline Linux kernel version.
18
19config BR2_PACKAGE_SUNXI_TOOLS_BOOTINFO
20	bool "sunxi-bootinfo"
21	help
22	  Displays information about sunxi boot code.
23
24config BR2_PACKAGE_SUNXI_TOOLS_FEL
25	bool "sunxi-fel"
26	depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
27	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
28	select BR2_PACKAGE_LIBUSB
29	help
30	  The sunxi-fel command can interact with a sunxi device in
31	  fel mode. This allows do download code to memory and execute
32	  it.
33
34comment "sunxi-fel needs a toolchain w/ threads, gcc >= 4.9"
35	depends on !BR2_TOOLCHAIN_HAS_THREADS || \
36		!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
37
38config BR2_PACKAGE_SUNXI_TOOLS_NAND_PART
39	bool "sunxi-nand-part"
40	default y
41	help
42	  The sunxi-nand-part command allows to repartition the internal
43	  NAND on sunxi devices.
44
45config BR2_PACKAGE_SUNXI_TOOLS_PIO
46	bool "sunxi-pio"
47	help
48	  GPIO manipulation tool for sunxi boards.
49
50config BR2_PACKAGE_SUNXI_TOOLS_MEMINFO
51	bool "sunxi-meminfo"
52	help
53	  Utility to retrieve DRAM information from registers on
54	  Allwinner SoCs. Specific for the linux-sunxi kernel - does
55	  not apply to the mainline Linux kernel version.
56
57config BR2_PACKAGE_SUNXI_TOOLS_PHOENIX_INFO
58	bool "phoenix_info"
59	help
60	  Display information about self-installing SD card images
61	  (created with Phoenix Card).
62
63	  https://linux-sunxi.org/PhoenixCard
64
65config BR2_PACKAGE_SUNXI_TOOLS_NAND_IMAGE_BUILDER
66	bool "sunxi-nand-image-builder"
67	help
68	  Creates a raw NAND image that can be read by the sunxi NAND
69	  controller.
70
71endif # BR2_PACKAGE_SUNXI_TOOLS
72