mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-25 20:26:34 +00:00
lvm2: disable static builds
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>
This commit is contained in:
parent
cc5b999cf6
commit
6eb425891e
@ -7,6 +7,7 @@ config BR2_PACKAGE_CRYPTSETUP
|
|||||||
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
|
||||||
depends on BR2_LARGEFILE # lvm2, util-linux
|
depends on BR2_LARGEFILE # lvm2, util-linux
|
||||||
depends on BR2_USE_MMU # lvm2
|
depends on BR2_USE_MMU # lvm2
|
||||||
|
depends on !BR2_PREFER_STATIC_LIB # lvm2
|
||||||
depends on BR2_USE_WCHAR # util-linux
|
depends on BR2_USE_WCHAR # util-linux
|
||||||
help
|
help
|
||||||
This tool helps manipulate dm-crypt and luks partitions for
|
This tool helps manipulate dm-crypt and luks partitions for
|
||||||
@ -14,6 +15,6 @@ config BR2_PACKAGE_CRYPTSETUP
|
|||||||
|
|
||||||
https://code.google.com/p/cryptsetup/
|
https://code.google.com/p/cryptsetup/
|
||||||
|
|
||||||
comment "cryptsetup needs a toolchain w/ largefile, wchar"
|
comment "cryptsetup needs a toolchain w/ largefile, wchar, dynamic library"
|
||||||
depends on BR2_USE_MMU
|
depends on BR2_USE_MMU
|
||||||
depends on !BR2_LARGEFILE || !BR2_USE_WCHAR
|
depends on !BR2_LARGEFILE || !BR2_USE_WCHAR || BR2_PREFER_STATIC_LIB
|
||||||
|
@ -2,6 +2,7 @@ config BR2_PACKAGE_DMRAID
|
|||||||
bool "dmraid"
|
bool "dmraid"
|
||||||
depends on BR2_LARGEFILE
|
depends on BR2_LARGEFILE
|
||||||
depends on BR2_USE_MMU # lvm2
|
depends on BR2_USE_MMU # lvm2
|
||||||
|
depends on !BR2_PREFER_STATIC_LIB # lvm2
|
||||||
# triggers gcc ice
|
# triggers gcc ice
|
||||||
depends on !BR2_arc
|
depends on !BR2_arc
|
||||||
select BR2_PACKAGE_LVM2
|
select BR2_PACKAGE_LVM2
|
||||||
@ -12,7 +13,7 @@ config BR2_PACKAGE_DMRAID
|
|||||||
dmraid uses the Linux device-mapper to create devices with
|
dmraid uses the Linux device-mapper to create devices with
|
||||||
respective mappings for the ATARAID sets discovered.
|
respective mappings for the ATARAID sets discovered.
|
||||||
|
|
||||||
comment "dmraid needs a toolchain w/ largefile"
|
comment "dmraid needs a toolchain w/ largefile, dynamic library"
|
||||||
depends on BR2_USE_MMU
|
depends on BR2_USE_MMU
|
||||||
depends on !BR2_LARGEFILE
|
depends on !BR2_LARGEFILE || BR2_PREFER_STATIC_LIB
|
||||||
depends on !BR2_arc
|
depends on !BR2_arc
|
||||||
|
@ -2,6 +2,7 @@ config BR2_PACKAGE_LVM2
|
|||||||
bool "lvm2 & device mapper"
|
bool "lvm2 & device mapper"
|
||||||
depends on BR2_LARGEFILE
|
depends on BR2_LARGEFILE
|
||||||
depends on BR2_USE_MMU # needs fork()
|
depends on BR2_USE_MMU # needs fork()
|
||||||
|
depends on !BR2_PREFER_STATIC_LIB # It fails to build statically
|
||||||
help
|
help
|
||||||
This is LVM2, the rewrite of The Linux Logical Volume Manager.
|
This is LVM2, the rewrite of The Linux Logical Volume Manager.
|
||||||
LVM supports enterprise level volume management of disk and disk
|
LVM supports enterprise level volume management of disk and disk
|
||||||
@ -33,6 +34,6 @@ config BR2_PACKAGE_LVM2_APP_LIBRARY
|
|||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
comment "lvm2 needs a toolchain w/ largefile"
|
comment "lvm2 needs a toolchain w/ largefile, dynamic library"
|
||||||
depends on BR2_USE_MMU
|
depends on BR2_USE_MMU
|
||||||
depends on !BR2_LARGEFILE
|
depends on !BR2_LARGEFILE || BR2_PREFER_STATIC_LIB
|
||||||
|
@ -4,6 +4,7 @@ config BR2_PACKAGE_UDISKS
|
|||||||
depends on BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
|
depends on BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
|
||||||
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus-glib -> glib2
|
depends on BR2_TOOLCHAIN_HAS_THREADS # dbus-glib -> glib2
|
||||||
depends on BR2_USE_MMU # lvm2
|
depends on BR2_USE_MMU # lvm2
|
||||||
|
depends on !BR2_PREFER_STATIC_LIB # lvm2
|
||||||
select BR2_PACKAGE_UDEV
|
select BR2_PACKAGE_UDEV
|
||||||
select BR2_PACKAGE_UDEV_ALL_EXTRAS
|
select BR2_PACKAGE_UDEV_ALL_EXTRAS
|
||||||
select BR2_PACKAGE_DBUS
|
select BR2_PACKAGE_DBUS
|
||||||
@ -36,8 +37,9 @@ config BR2_PACKAGE_UDISKS_LVM2
|
|||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
comment "udisks needs udev /dev management and a toolchain w/ wchar, threads"
|
comment "udisks needs udev /dev management and a toolchain w/ wchar, threads, dynamic library"
|
||||||
depends on !BR2_avr32
|
depends on !BR2_avr32
|
||||||
depends on BR2_USE_MMU
|
depends on BR2_USE_MMU
|
||||||
depends on !BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV || \
|
depends on !BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV || \
|
||||||
!BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
!BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
||||||
|
BR2_PREFER_STATIC_LIB
|
||||||
|
Loading…
x
Reference in New Issue
Block a user