diff --git a/man/bootchart.conf.xml b/man/bootchart.conf.xml index a364826bb0..e11ccb52f6 100644 --- a/man/bootchart.conf.xml +++ b/man/bootchart.conf.xml @@ -124,7 +124,7 @@ Init=[path] Configures bootchart to run a non-standard - binary instead of /sbin/init. This + binary instead of /usr/lib/systemd/systemd. This option is only relevant if bootchart was invoked from the kernel command line with init=/usr/lib/systemd/systemd-bootchart. diff --git a/man/systemd-bootchart.xml b/man/systemd-bootchart.xml index 0068e928a5..ff86be2ad8 100644 --- a/man/systemd-bootchart.xml +++ b/man/systemd-bootchart.xml @@ -116,7 +116,7 @@ systemd-bootchart instead of the init process. In turn, systemd-bootchart - will invoke /sbin/init. + will invoke /usr/lib/systemd/systemd. @@ -218,7 +218,7 @@ Use this init binary. Defaults to - /sbin/init. + /usr/lib/systemd/systemd. diff --git a/src/bootchart/bootchart.c b/src/bootchart/bootchart.c index 0808ba44ea..b49e2c9235 100644 --- a/src/bootchart/bootchart.c +++ b/src/bootchart/bootchart.c @@ -76,7 +76,7 @@ int sysfd=-1; #define DEFAULT_HZ 25.0 #define DEFAULT_SCALE_X 100.0 /* 100px = 1sec */ #define DEFAULT_SCALE_Y 20.0 /* 16px = 1 process bar */ -#define DEFAULT_INIT "/sbin/init" +#define DEFAULT_INIT ROOTLIBDIR "/systemd/systemd" #define DEFAULT_OUTPUT "/run/log" /* graph defaults */ @@ -326,7 +326,7 @@ int main(int argc, char *argv[]) { /* * If the kernel executed us through init=/usr/lib/systemd/systemd-bootchart, then * fork: - * - parent execs executable specified via init_path[] (/sbin/init by default) as pid=1 + * - parent execs executable specified via init_path[] (/usr/lib/systemd/systemd by default) as pid=1 * - child logs data */ if (getpid() == 1) {