mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
udev: set log.c's log level from udev's kernel command line option
This commit is contained in:
@@ -1035,14 +1035,17 @@ static void kernel_cmdline_options(struct udev *udev)
|
||||
else
|
||||
opt = s;
|
||||
|
||||
if (startswith(opt, "udev.log-priority="))
|
||||
udev_set_log_priority(udev, util_log_priority(opt + 18));
|
||||
if (startswith(opt, "udev.log-priority=")) {
|
||||
int prio;
|
||||
|
||||
if (startswith(opt, "udev.children-max="))
|
||||
prio = util_log_priority(opt + 18);
|
||||
log_set_max_level(prio);
|
||||
udev_set_log_priority(udev, prio);
|
||||
} else if (startswith(opt, "udev.children-max=")) {
|
||||
children_max = strtoul(opt + 18, NULL, 0);
|
||||
|
||||
if (startswith(opt, "udev.exec-delay="))
|
||||
} else if (startswith(opt, "udev.exec-delay=")) {
|
||||
exec_delay = strtoul(opt + 16, NULL, 0);
|
||||
}
|
||||
|
||||
free(s);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user