mirror of
https://git.yoctoproject.org/poky
synced 2026-02-23 18:09:40 +01:00
disable-hardcoded-configs.patch refreshed for new version Changelo: ========= - Made it possible again to have FAT32 filesystems with less than 0xfff5 clusters - Make FAT32 entries 0 and 1 match what windows 10 does - Misc source code and configure script cleanup (From OE-Core rev: 9ac0de44f11123876a92f7d7819d5ff2c20475b7) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> (cherry picked from commit b19127f0cd0e10c7180c138284b38c97fa9db7af) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
50 lines
1.4 KiB
BlitzBasic
50 lines
1.4 KiB
BlitzBasic
SUMMARY = "Utilities to access MS-DOS disks without mounting them"
|
|
DESCRIPTION = "Mtools is a collection of utilities to access MS-DOS disks from GNU and Unix without mounting them."
|
|
HOMEPAGE = "http://www.gnu.org/software/mtools/"
|
|
SECTION = "optional"
|
|
LICENSE = "GPL-3.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
|
|
DEPENDS += "virtual/libiconv"
|
|
|
|
RDEPENDS:${PN}:libc-glibc = "glibc-gconv-ibm850"
|
|
RRECOMMENDS:${PN}:libc-glibc = "\
|
|
glibc-gconv-ibm437 \
|
|
glibc-gconv-ibm737 \
|
|
glibc-gconv-ibm775 \
|
|
glibc-gconv-ibm851 \
|
|
glibc-gconv-ibm852 \
|
|
glibc-gconv-ibm855 \
|
|
glibc-gconv-ibm857 \
|
|
glibc-gconv-ibm860 \
|
|
glibc-gconv-ibm861 \
|
|
glibc-gconv-ibm862 \
|
|
glibc-gconv-ibm863 \
|
|
glibc-gconv-ibm865 \
|
|
glibc-gconv-ibm866 \
|
|
glibc-gconv-ibm869 \
|
|
"
|
|
SRC_URI[sha256sum] = "2542152264fb3eff7ed70662abf4f4eef8133bc37d0b7a686c240df2b5f80a13"
|
|
|
|
SRC_URI = "${GNU_MIRROR}/mtools/mtools-${PV}.tar.bz2 \
|
|
file://mtools-makeinfo.patch \
|
|
file://clang_UNUSED.patch \
|
|
"
|
|
|
|
SRC_URI:append:class-native = " file://disable-hardcoded-configs.patch"
|
|
|
|
inherit autotools texinfo
|
|
|
|
EXTRA_OECONF = "--without-x"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
PACKAGECONFIG ??= ""
|
|
PACKAGECONFIG[libbsd] = "ac_cv_lib_bsd_main=yes,ac_cv_lib_bsd_main=no,libbsd"
|
|
|
|
do_install:prepend () {
|
|
# Create bindir to fix parallel installation issues
|
|
mkdir -p ${D}/${bindir}
|
|
mkdir -p ${D}/${datadir}
|
|
}
|