mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-17 20:51:34 +03:00
When BR2_PREFER_STATIC_LIB is defined it still try to build the shared executables and it fails. Fixes: http://autobuild.buildroot.net/results/b0b/b0b386969459dda9c294f1ccb4927ca225fa6bdd/ Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
20 lines
631 B
Plaintext
20 lines
631 B
Plaintext
config BR2_PACKAGE_DMRAID
|
|
bool "dmraid"
|
|
depends on BR2_LARGEFILE
|
|
depends on BR2_USE_MMU # lvm2
|
|
depends on !BR2_PREFER_STATIC_LIB # lvm2
|
|
# triggers gcc ice
|
|
depends on !BR2_arc
|
|
select BR2_PACKAGE_LVM2
|
|
help
|
|
dmraid discovers, activates, deactivates and displays properties
|
|
of software RAID sets (eg, ATARAID) and contained DOS partitions.
|
|
|
|
dmraid uses the Linux device-mapper to create devices with
|
|
respective mappings for the ATARAID sets discovered.
|
|
|
|
comment "dmraid needs a toolchain w/ largefile, dynamic library"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_LARGEFILE || BR2_PREFER_STATIC_LIB
|
|
depends on !BR2_arc
|