aboutsummaryrefslogtreecommitdiff
path: root/util-linux/mdev.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2013-01-30 16:51:22 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2013-01-30 16:51:22 +0100
commit6e29d07417c84e69ed0fb375205ae4e62fa236f7 (patch)
tree75edfecc39a5666f4c2dbcfa46e675cfe72ab219 /util-linux/mdev.c
parent04ac6e03c3ae8302be2420cf73d70cf466791fa6 (diff)
downloadbusybox-6e29d07417c84e69ed0fb375205ae4e62fa236f7.tar.gz
mdev: extend debug logging output
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/mdev.c')
-rw-r--r--util-linux/mdev.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/util-linux/mdev.c b/util-linux/mdev.c
index 75de14ff1..52122dd63 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);
}
}