diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2016-06-02 13:49:32 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-03 13:13:30 +0100 |
commit | 48bc62378a3705730f376ca03c2d6efe7a98d924 (patch) | |
tree | 505b77750453f306133db577fde146f51a716a46 /meta/recipes-devtools/mtools/mtools_4.0.18.bb | |
parent | 309c0b639491cb0249e56dddf0e3364ea6e1bb76 (diff) | |
download | poky-48bc62378a3705730f376ca03c2d6efe7a98d924.tar.gz |
mtools: Patch out a useless sanity check
The sanity check is ensuring that filesystem size is divisible by
sectors-per-track. That seems to be just an optimization for ancient
media, and quite tricky to accomplish as different dosfstools versions
produce filesystems with different sectors-per-track.
Continue processing even if filesystem size is not divisible by
sectors-per-track.
(From OE-Core rev: 970cdbe26d9b6d0bd93325c8e734416e679010df)
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/mtools/mtools_4.0.18.bb')
-rw-r--r-- | meta/recipes-devtools/mtools/mtools_4.0.18.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-devtools/mtools/mtools_4.0.18.bb b/meta/recipes-devtools/mtools/mtools_4.0.18.bb index efde547e26..b0efc9ecfe 100644 --- a/meta/recipes-devtools/mtools/mtools_4.0.18.bb +++ b/meta/recipes-devtools/mtools/mtools_4.0.18.bb | |||
@@ -29,7 +29,9 @@ SRC_URI[sha256sum] = "59e9cf80885399c4f229e5d87e49c0c2bfeec044e1386d59fcd0b0aead | |||
29 | 29 | ||
30 | SRC_URI = "${GNU_MIRROR}/mtools/mtools-${PV}.tar.bz2 \ | 30 | SRC_URI = "${GNU_MIRROR}/mtools/mtools-${PV}.tar.bz2 \ |
31 | file://mtools-makeinfo.patch \ | 31 | file://mtools-makeinfo.patch \ |
32 | file://no-x11.gplv3.patch" | 32 | file://no-x11.gplv3.patch \ |
33 | file://0001-Continue-even-if-fs-size-is-not-divisible-by-sectors.patch \ | ||
34 | " | ||
33 | 35 | ||
34 | 36 | ||
35 | inherit autotools texinfo | 37 | inherit autotools texinfo |