mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-02 16:07:42 +00:00
dosfstools: bump to version 3.0.15
[Peter: update comment dependency, use DOSFSTOOLS_LDFLAGS for all flags] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
462f828228
commit
d57f905d93
@ -1,6 +1,8 @@
|
|||||||
config BR2_PACKAGE_DOSFSTOOLS
|
config BR2_PACKAGE_DOSFSTOOLS
|
||||||
bool "dosfstools"
|
bool "dosfstools"
|
||||||
depends on BR2_LARGEFILE
|
depends on BR2_LARGEFILE
|
||||||
|
depends on BR2_USE_WCHAR
|
||||||
|
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
||||||
help
|
help
|
||||||
Tools for creating and checking DOS FAT filesystems.
|
Tools for creating and checking DOS FAT filesystems.
|
||||||
|
|
||||||
@ -24,5 +26,5 @@ config BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL
|
|||||||
help
|
help
|
||||||
Get or set the DOS FAT filesystem label.
|
Get or set the DOS FAT filesystem label.
|
||||||
|
|
||||||
comment "dosfstools requires a toolchain with LARGEFILE support"
|
comment "dosfstools requires a toolchain with LARGEFILE and WCHAR support"
|
||||||
depends on !BR2_LARGEFILE
|
depends on !BR2_LARGEFILE || !BR2_USE_WCHAR
|
||||||
|
@ -4,17 +4,24 @@
|
|||||||
#
|
#
|
||||||
#############################################################
|
#############################################################
|
||||||
|
|
||||||
DOSFSTOOLS_VERSION = 3.0.12
|
DOSFSTOOLS_VERSION = 3.0.15
|
||||||
DOSFSTOOLS_SITE = http://fossies.org/linux/misc/
|
DOSFSTOOLS_SITE = http://fossies.org/linux/misc
|
||||||
DOSFSTOOLS_LICENSE = GPLv3+
|
DOSFSTOOLS_LICENSE = GPLv3+
|
||||||
DOSFSTOOLS_LICENSE_FILES = COPYING
|
DOSFSTOOLS_LICENSE_FILES = COPYING
|
||||||
|
DOSFSTOOLS_LDFLAGS = $(TARGET_LDFLAGS)
|
||||||
|
|
||||||
|
ifneq ($(BR2_ENABLE_LOCALE),y)
|
||||||
|
DOSFSTOOLS_DEPENDENCIES += libiconv
|
||||||
|
DOSFSTOOLS_LDFLAGS += -liconv
|
||||||
|
endif
|
||||||
|
|
||||||
MKDOSFS_BINARY = mkdosfs
|
MKDOSFS_BINARY = mkdosfs
|
||||||
DOSFSCK_BINARY = dosfsck
|
DOSFSCK_BINARY = dosfsck
|
||||||
DOSFSLABEL_BINARY = dosfslabel
|
DOSFSLABEL_BINARY = dosfslabel
|
||||||
|
|
||||||
define DOSFSTOOLS_BUILD_CMDS
|
define DOSFSTOOLS_BUILD_CMDS
|
||||||
$(MAKE) CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)" \
|
$(MAKE) CFLAGS="$(TARGET_CFLAGS)" CC="$(TARGET_CC)" \
|
||||||
CC="$(TARGET_CC)" -C $(@D)
|
LDFLAGS="$(DOSFSTOOLS_LDFLAGS)" -C $(@D)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
DOSFSTOOLS_INSTALL_BIN_FILES_$(BR2_PACKAGE_DOSFSTOOLS_MKDOSFS)+=$(MKDOSFS_BINARY)
|
DOSFSTOOLS_INSTALL_BIN_FILES_$(BR2_PACKAGE_DOSFSTOOLS_MKDOSFS)+=$(MKDOSFS_BINARY)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user