From d49096fea2499f118976fc6ad17e803847629eab Mon Sep 17 00:00:00 2001 From: John Crispin Date: Mon, 18 Nov 2013 11:41:04 +0100 Subject: add debug level handover between preinit and main process Signed-off-by: John Crispin --- initd/preinit.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'initd') diff --git a/initd/preinit.c b/initd/preinit.c index eeadbeb..c5f7ada 100644 --- a/initd/preinit.c +++ b/initd/preinit.c @@ -34,7 +34,7 @@ static void spawn_procd(struct uloop_process *proc, int ret) { char *wdt_fd = watchdog_fd(); - char *argv[] = { "/sbin/procd", NULL }; + char *argv[] = { "/sbin/procd", "-d", "0", NULL }; struct stat s; if (plugd_proc.pid > 0) @@ -49,6 +49,10 @@ spawn_procd(struct uloop_process *proc, int ret) DEBUG(2, "Exec to real procd now\n"); if (wdt_fd) setenv("WDTFD", wdt_fd, 1); + if (debug) + snprintf(argv[2], 2, "%d", debug & 0xf); + else + argv[1] = NULL; execvp(argv[0], argv); } -- cgit v1.2.3