diff options
author | Christopher Larson <chris_larson@mentor.com> | 2019-11-26 23:08:28 +0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-11-29 17:43:40 +0000 |
commit | 14e176db526b20279bde28ed1e4110ed7b31c0a1 (patch) | |
tree | 6ae5f4ac653fb67f20b042aaabf7a1ca4457382a /meta/recipes-devtools | |
parent | 98b06ec73c660a1c42d0520f22aab36ee316591f (diff) | |
download | poky-14e176db526b20279bde28ed1e4110ed7b31c0a1.tar.gz |
dosfstools: fix CP437 error from `dosfsck -l`
Fix this error seen when using dosfsck -l to list fs contents:
CP437: Invalid argument
(From OE-Core rev: 8a5fdac3c2d207b2cfac64ec2a2626c3ef154d84)
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/dosfstools/dosfstools_4.1.bb | 3 |
1 files changed, 3 insertions, 0 deletions
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" | |||
23 | CFLAGS += "-D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" | 23 | CFLAGS += "-D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" |
24 | 24 | ||
25 | BBCLASSEXTEND = "native" | 25 | BBCLASSEXTEND = "native" |
26 | |||
27 | # Add codepage437 to avoid error from `dosfsck -l` | ||
28 | RRECOMMENDS_${PN}_append_libc-glibc = " glibc-gconv-ibm437" | ||