From: Christopher Larson Date: Tue, 26 Nov 2019 18:08:28 +0000 (+0500) Subject: dosfstools: fix CP437 error from `dosfsck -l` X-Git-Tag: uninative-2.8~961 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=8a5fdac3c2d207b2cfac64ec2a2626c3ef154d84;p=openembedded-core.git dosfstools: fix CP437 error from `dosfsck -l` Fix this error seen when using dosfsck -l to list fs contents: CP437: Invalid argument Signed-off-by: Christopher Larson Signed-off-by: Ross Burton --- diff --git a/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb b/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb index 69aa81af44..23b8836670 100644 --- a/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb +++ b/meta/recipes-devtools/dosfstools/dosfstools_4.1.bb @@ -23,3 +23,6 @@ EXTRA_OECONF = "--without-udev --enable-compat-symlinks" CFLAGS += "-D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" BBCLASSEXTEND = "native" + +# Add codepage437 to avoid error from `dosfsck -l` +RRECOMMENDS_${PN}_append_libc-glibc = " glibc-gconv-ibm437"