[oe-commits] Ross Burton : e2fsprogs: silence debugfs

git at git.openembedded.org git at git.openembedded.org
Thu Jan 2 13:05:46 UTC 2014


Module: openembedded-core.git
Branch: master
Commit: 13a8d3869b0fe0ebdddcee37fb48c5b9cdf718ba
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=13a8d3869b0fe0ebdddcee37fb48c5b9cdf718ba

Author: Ross Burton <ross.burton at 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 at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 .../e2fsprogs/e2fsprogs-1.42.8/quiet-debugfs.patch    | 19 +++++++++++++++++++
 meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.8.bb   |  1 +
 2 files changed, 20 insertions(+)

diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42.8/quiet-debugfs.patch b/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42.8/quiet-debugfs.patch
new file mode 100644
index 0000000..830e9d5
--- /dev/null
+++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs-1.42.8/quiet-debugfs.patch
@@ -0,0 +1,19 @@
+When executing a script don't echo every command, as we do this for entire
+filesystems at rootfs time.
+
+Upstream-Status: Inappropriate
+Signed-off-by: Ross Burton <ross.burton at intel.com>
+
+diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c
+index 5590295..ac57292 100644
+--- a/debugfs/debugfs.c
++++ b/debugfs/debugfs.c
+@@ -2378,7 +2378,7 @@ static int source_file(const char *cmd_file, int ss_idx)
+ 		cp = strchr(buf, '\r');
+ 		if (cp)
+ 			*cp = 0;
+-		printf("debugfs: %s\n", buf);
++		/*printf("debugfs: %s\n", buf);*/
+ 		retval = ss_execute_line(ss_idx, buf);
+ 		if (retval) {
+ 			ss_perror(ss_idx, retval, buf);
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.8.bb b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.8.bb
index 22ad925..6175ce7 100644
--- a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.8.bb
+++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.8.bb
@@ -9,6 +9,7 @@ SRC_URI += "file://acinclude.m4 \
             file://debugfs-extent-header.patch \
             file://populate-extfs.sh \
             file://e2fsprogs-fix-tests-f_extent_oobounds.patch \
+            file://quiet-debugfs.patch \
 "
 
 SRC_URI[md5sum] = "8ef664b6eb698aa6b733df59b17b9ed4"



More information about the Openembedded-commits mailing list