diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2018-02-02 15:10:33 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-02-06 11:06:30 +0000 |
commit | aa81e94f801ea737f192dea6530d3dabf9ab6040 (patch) | |
tree | 2b3706c82e586caf3a5de7711994d9566c1a2e9e /meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.8.bb | |
parent | d00c35a1818e16de9b8fb34d88d40d2ff93591e0 (diff) | |
download | poky-aa81e94f801ea737f192dea6530d3dabf9ab6040.tar.gz |
e2fsprogs: only quiet debugfs for native package
Many test cases expect the output of running commands for debugfs,
the patch quiet-debugfs.patch suppress the output so ptest failed:
| 292 tests succeeded 47 tests failed
The patch was meant to suppress the output in do_rootfs according
to the original commit:
======================
commit 13a8d3869b0fe0ebdddcee37fb48c5b9cdf718ba
Author: Ross Burton <ross.burton@intel.com>
Date: Mon Dec 23 13:38:34 2013 +0000
e2fsprogs: silence debugfs
debugfs echos the commands when it is executing a script, but as the scripts
used at rootfs time are long this massively inflates the do_rootfs log.
Comment out the echo so that the rootfs isn't 20K lines longer than it needs to
be.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
======================
So only apply the patch for native package, then the ptest will
be pass for target package.
(From OE-Core rev: 4fed9d636852f04457e25c0f7064a4928cc8c36b)
Signed-off-by: Jackie Huang <jackie.huang@windriver.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/e2fsprogs/e2fsprogs_1.43.8.bb')
-rw-r--r-- | meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.8.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.8.bb b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.8.bb index b5cfc6810b..a53585db47 100644 --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.8.bb +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.43.8.bb | |||
@@ -1,7 +1,6 @@ | |||
1 | require e2fsprogs.inc | 1 | require e2fsprogs.inc |
2 | 2 | ||
3 | SRC_URI += "file://remove.ldconfig.call.patch \ | 3 | SRC_URI += "file://remove.ldconfig.call.patch \ |
4 | file://quiet-debugfs.patch \ | ||
5 | file://run-ptest \ | 4 | file://run-ptest \ |
6 | file://ptest.patch \ | 5 | file://ptest.patch \ |
7 | file://Revert-mke2fs-enable-the-metadata_csum-and-64bit-fea.patch \ | 6 | file://Revert-mke2fs-enable-the-metadata_csum-and-64bit-fea.patch \ |
@@ -10,7 +9,9 @@ SRC_URI += "file://remove.ldconfig.call.patch \ | |||
10 | file://0001-libext2fs-fix-build-failure-in-swapfs.c-on-big-endia.patch \ | 9 | file://0001-libext2fs-fix-build-failure-in-swapfs.c-on-big-endia.patch \ |
11 | " | 10 | " |
12 | 11 | ||
13 | SRC_URI_append_class-native = " file://e2fsprogs-fix-missing-check-for-permission-denied.patch" | 12 | SRC_URI_append_class-native = " file://e2fsprogs-fix-missing-check-for-permission-denied.patch \ |
13 | file://quiet-debugfs.patch \ | ||
14 | " | ||
14 | 15 | ||
15 | SRCREV = "af2eac481cf426c05ae12b946396980e16c8ab19" | 16 | SRCREV = "af2eac481cf426c05ae12b946396980e16c8ab19" |
16 | UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+\.\d+(\.\d+)*)$" | 17 | UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+\.\d+(\.\d+)*)$" |