From: Denys Vlasenko Date: Tue, 4 May 2010 22:40:15 +0000 (+0200) Subject: bootchartd: better wording in comment X-Git-Tag: 1_17_0~257 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b8ba6b66f5d730efcf13dbbb3f9362dd6840d93b;p=oweals%2Fbusybox.git bootchartd: better wording in comment Signed-off-by: Denys Vlasenko --- diff --git a/init/bootchartd.c b/init/bootchartd.c index 9c43e3388..9faf14d36 100644 --- a/init/bootchartd.c +++ b/init/bootchartd.c @@ -306,11 +306,12 @@ int bootchartd_main(int argc UNUSED_PARAM, char **argv) /* Inform parent that we are ready */ raise(SIGSTOP); - /* If we started by kernel, PATH might be not set. - * And in order to run tar we may need PATH to be set: + /* If we are started by kernel, PATH might be unset. + * In order to find "tar", let's set some sane PATH: */ if (cmd == CMD_PID1 && !getenv("PATH")) putenv((char*)bb_PATH_root_path); + tempdir = make_tempdir(cmd == CMD_START ? argv[2] : NULL); do_logging(); finalize(tempdir);