Commit ae2cd54a authored by Yann E. MORIN's avatar Yann E. MORIN Committed by Peter Korsgaard
Browse files

package/mtools: new host-package



Signed-off-by: default avatar"Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tested-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent dfa97659
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -6,6 +6,7 @@ source "package/e2fsprogs/Config.in.host"
source "package/genimage/Config.in.host"
source "package/genpart/Config.in.host"
source "package/lpc3250loader/Config.in.host"
source "package/mtools/Config.in.host"
source "package/omap-u-boot-utils/Config.in.host"
source "package/openocd/Config.in.host"
source "package/sam-ba/Config.in.host"
+9 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_HOST_MTOOLS
	bool "host mtools"
	help
	  Mtools is a collection of utilities to access MS-DOS disks from
	  Unix without mounting them. It supports Win'95 style long file
	  names, OS/2 Xdf disks and 2m disks (store up to 1992k on a high
	  density 3 1/2 disk).
	  
	  http://www.tux.org/pub/tux/mtools/
+17 −0
Original line number Diff line number Diff line
#############################################################
#
# mtools
#
#############################################################

MTOOLS_VERSION       = 4.0.18
MTOOLS_SOURCE        = mtools-$(MTOOLS_VERSION).tar.bz2
MTOOLS_SITE          = $(BR2_GNU_MIRROR)/mtools/
MTOOLS_LICENSE       = GPLv3+
MTOOLS_LICENSE_FILES = COPYING

MTOOLS_CONF_OPT = --enable-xdf        \
                  --enable-vold       \
                  --enable-new-vold

$(eval $(host-autotools-package))