Config.in 2.1 KB

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