kumquat-buildroot/package/sunxi-tools/Config.in
Fabrice Fontaine d644ce0f94 package/sunxi-tools: sunxi-fel needs dynamic library
Fix the following build failure raised since bump to version
1.4.2-168-ged3039c in commit 2e330dff6a:

/home/buildroot/autobuild/run/instance-1/output-1/host/lib/gcc/arm-buildroot-linux-musleabihf/12.3.0/../../../../arm-buildroot-linux-musleabihf/bin/ld: attempted static link of dynamic object `libfdt/libfdt-1.6.1.so'

Fixes:
 - http://autobuild.buildroot.org/results/6788d86c10d551b3d617e33c85083b817eb5d0b2

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
(cherry picked from commit e167800979b48a449c168c229448e7069d2045e7)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2024-08-11 09:32:56 +02:00

75 lines
2.1 KiB
Plaintext

config BR2_PACKAGE_SUNXI_TOOLS
bool "sunxi-tools"
depends on BR2_arm
help
Tools for Allwinner A10 (aka sun4i) and A13 (aka sun5i)
based devices.
http://linux-sunxi.org/Sunxi-tools
if BR2_PACKAGE_SUNXI_TOOLS
config BR2_PACKAGE_SUNXI_TOOLS_FEXC
bool "sunxi-fexc (fex2bin & bin2fex)"
help
Convert between .fex board definition files and binary
format. These tools are specific for the linux-sunxi kernel
and do not apply to the mainline Linux kernel version.
config BR2_PACKAGE_SUNXI_TOOLS_BOOTINFO
bool "sunxi-bootinfo"
help
Displays information about sunxi boot code.
config BR2_PACKAGE_SUNXI_TOOLS_FEL
bool "sunxi-fel"
depends on !BR2_STATIC_LIBS # dtc
depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
select BR2_PACKAGE_DTC
select BR2_PACKAGE_LIBUSB
select BR2_PACKAGE_ZLIB
help
The sunxi-fel command can interact with a sunxi device in
fel mode. This allows do download code to memory and execute
it.
comment "sunxi-fel needs a toolchain w/ dynamic library, threads, gcc >= 4.9"
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || \
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
config BR2_PACKAGE_SUNXI_TOOLS_NAND_PART
bool "sunxi-nand-part"
default y
help
The sunxi-nand-part command allows to repartition the internal
NAND on sunxi devices.
config BR2_PACKAGE_SUNXI_TOOLS_PIO
bool "sunxi-pio"
help
GPIO manipulation tool for sunxi boards.
config BR2_PACKAGE_SUNXI_TOOLS_MEMINFO
bool "sunxi-meminfo"
help
Utility to retrieve DRAM information from registers on
Allwinner SoCs. Specific for the linux-sunxi kernel - does
not apply to the mainline Linux kernel version.
config BR2_PACKAGE_SUNXI_TOOLS_PHOENIX_INFO
bool "phoenix_info"
help
Display information about self-installing SD card images
(created with Phoenix Card).
https://linux-sunxi.org/PhoenixCard
config BR2_PACKAGE_SUNXI_TOOLS_NAND_IMAGE_BUILDER
bool "sunxi-nand-image-builder"
help
Creates a raw NAND image that can be read by the sunxi NAND
controller.
endif # BR2_PACKAGE_SUNXI_TOOLS