[git commit] mdev: extend debug logging output

Denys Vlasenko vda.linux at googlemail.com
Wed Jan 30 15:51:22 UTC 2013


commit: http://git.busybox.net/busybox/commit/?id=6e29d07417c84e69ed0fb375205ae4e62fa236f7
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 util-linux/mdev.c |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/util-linux/mdev.c b/util-linux/mdev.c
index 75de14f..52122dd 100644
--- a/util-linux/mdev.c
+++ b/util-linux/mdev.c
@@ -661,6 +661,8 @@ static void make_device(char *device_name, char *path, int operation)
 			if (mknod(node_name, rule->mode | type, makedev(major, minor)) && errno != EEXIST)
 				bb_perror_msg("can't create '%s'", node_name);
 			if (ENABLE_FEATURE_MDEV_CONF) {
+				if (G.verbose)
+					bb_error_msg("chmod: %o chown: %u:%u", rule->mode, rule->ugid.uid, rule->ugid.gid);
 				chmod(node_name, rule->mode);
 				chown(node_name, rule->ugid.uid, rule->ugid.gid);
 			}
@@ -923,7 +925,9 @@ int mdev_main(int argc UNUSED_PARAM, char **argv)
 			if (logfd >= 0) {
 				xmove_fd(logfd, STDERR_FILENO);
 				G.verbose = 1;
-				bb_error_msg("seq: %s action: %s", seq, action);
+				if (seq)
+					applet_name = xasprintf("%s[%s]", applet_name, seq);
+				bb_error_msg("action: %s", action);
 			}
 		}
 


More information about the busybox-cvs mailing list