Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
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"
--- /dev/null
+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/
--- /dev/null
+#############################################################
+#
+# 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))