blob: 830e9d57a5c756c0de4123b3ce4c798acf6c8992 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001When executing a script don't echo every command, as we do this for entire
2filesystems at rootfs time.
3
4Upstream-Status: Inappropriate
5Signed-off-by: Ross Burton <ross.burton@intel.com>
6
7diff --git a/debugfs/debugfs.c b/debugfs/debugfs.c
8index 5590295..ac57292 100644
9--- a/debugfs/debugfs.c
10+++ b/debugfs/debugfs.c
11@@ -2378,7 +2378,7 @@ static int source_file(const char *cmd_file, int ss_idx)
12 cp = strchr(buf, '\r');
13 if (cp)
14 *cp = 0;
15- printf("debugfs: %s\n", buf);
16+ /*printf("debugfs: %s\n", buf);*/
17 retval = ss_execute_line(ss_idx, buf);
18 if (retval) {
19 ss_perror(ss_idx, retval, buf);