This repository was archived by the owner on Feb 27, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 11 files changed +57
-12
lines changed Expand file tree Collapse file tree 11 files changed +57
-12
lines changed Original file line number Diff line number Diff line change 1
1
#
2
2
# Automatically generated file; DO NOT EDIT.
3
- # Buildroot 2013.05-git-00063-gbf7d7fb -dirty Configuration
3
+ # Buildroot 2013.05-git-00009-g28d662a -dirty Configuration
4
4
#
5
5
BR2_HAVE_DOT_CONFIG=y
6
6
BR2_arm=y
@@ -247,6 +247,7 @@ BR2_BUSYBOX_VERSION="1.21.0"
247
247
BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.21.x.config"
248
248
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
249
249
# BR2_PACKAGE_BUSYBOX_WATCHDOG is not set
250
+ BR2_PACKAGE_MTOOLS=y
250
251
251
252
#
252
253
# Audio and video applications
@@ -532,7 +533,7 @@ BR2_PACKAGE_QT_SCRIPT=y
532
533
BR2_PACKAGE_DOSFSTOOLS=y
533
534
BR2_PACKAGE_DOSFSTOOLS_MKDOSFS=y
534
535
BR2_PACKAGE_DOSFSTOOLS_DOSFSCK=y
535
- BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL=y
536
+ # BR2_PACKAGE_DOSFSTOOLS_DOSFSLABEL is not set
536
537
BR2_PACKAGE_E2FSPROGS=y
537
538
# BR2_PACKAGE_E2FSPROGS_BADBLOCKS is not set
538
539
# BR2_PACKAGE_E2FSPROGS_CHATTR is not set
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ menu "Package Selection for the target"
3
3
source "package/recovery/Config.in"
4
4
source "package/arora/Config.in"
5
5
source "package/busybox/Config.in"
6
-
6
+ source "package/mtools/Config.in"
7
7
# Audio and video applications
8
8
source "package/multimedia/Config.in"
9
9
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ source "package/e2fsprogs/Config.in.host"
6
6
source "package/genimage/Config.in.host"
7
7
source "package/genpart/Config.in.host"
8
8
source "package/lpc3250loader/Config.in.host"
9
- source "package/mtools/Config.in.host"
9
+ source "package/mtools-host /Config.in.host"
10
10
source "package/omap-u-boot-utils/Config.in.host"
11
11
source "package/openocd/Config.in.host"
12
12
source "package/sam-ba/Config.in.host"
File renamed without changes.
Original file line number Diff line number Diff line change
1
+ # ############################################################
2
+ #
3
+ # mtools
4
+ #
5
+ # ############################################################
6
+
7
+ MTOOLS_VERSION = 4.0.18
8
+ MTOOLS_SOURCE = mtools-$(MTOOLS_VERSION ) .tar.bz2
9
+ MTOOLS_SITE = $(BR2_GNU_MIRROR ) /mtools/
10
+ MTOOLS_LICENSE = GPLv3+
11
+ MTOOLS_LICENSE_FILES = COPYING
12
+
13
+ MTOOLS_CONF_OPT = --enable-xdf \
14
+ --enable-vold \
15
+ --enable-new-vold
16
+
17
+ $(eval $(host-autotools-package))
Original file line number Diff line number Diff line change
1
+ mtools_skip_check=1
Original file line number Diff line number Diff line change
1
+ config BR2_PACKAGE_MTOOLS
2
+ bool "mtools"
3
+ help
4
+ Mtools is a collection of utilities to access MS-DOS disks from
5
+ Unix without mounting them. It supports Win'95 style long file
6
+ names, OS/2 Xdf disks and 2m disks (store up to 1992k on a high
7
+ density 3 1/2 disk).
8
+
9
+ http://www.tux.org/pub/tux/mtools/
Original file line number Diff line number Diff line change
1
+ drive p:file="/dev/mmcblk0p1"
Original file line number Diff line number Diff line change @@ -9,9 +9,24 @@ MTOOLS_SOURCE = mtools-$(MTOOLS_VERSION).tar.bz2
9
9
MTOOLS_SITE = $(BR2_GNU_MIRROR ) /mtools/
10
10
MTOOLS_LICENSE = GPLv3+
11
11
MTOOLS_LICENSE_FILES = COPYING
12
+ MTOOLS_LDFLAGS = $(TARGET_LDFLAGS )
12
13
13
14
MTOOLS_CONF_OPT = --enable-xdf \
14
- --enable-vold \
15
- --enable-new-vold
15
+ --enable-vold
16
16
17
- $(eval $(host-autotools-package))
17
+ ifneq ($(BR2_ENABLE_LOCALE ) ,y)
18
+ MTOOLS_DEPENDENCIES += libiconv
19
+ MTOOLS_LDFLAGS += -liconv
20
+ endif
21
+
22
+ define MTOOLS_BUILD_CMDS
23
+ $(MAKE ) CC="$(TARGET_CC ) " LDFLAGS="$(MTOOLS_LDFLAGS ) " -C $(@D )
24
+ endef
25
+
26
+ define MTOOLS_INSTALL_TARGET_CMDS
27
+ $(INSTALL ) -m 0755 $(@D ) /mlabel $(TARGET_DIR ) /sbin/mlabel
28
+ $(INSTALL ) -m 0755 package/mtools/.mtoolsrc $(TARGET_DIR ) /.mtoolsrc
29
+ $(INSTALL ) -m 0755 package/mtools/mtools.conf $(TARGET_DIR ) /etc/mtools.conf
30
+ endef
31
+
32
+ $(eval $(autotools-package))
You can’t perform that action at this time.
0 commit comments