aboutsummaryrefslogtreecommitdiff
path: root/init
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-05-05 00:40:15 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-05-05 00:40:15 +0200
commitb8ba6b66f5d730efcf13dbbb3f9362dd6840d93b (patch)
tree5dcf32bae9108ddb84e34547527a8a982e283050 /init
parente7f1e5ca1de60db1336f0ec85b1c9df55f6402b7 (diff)
downloadbusybox-w32-b8ba6b66f5d730efcf13dbbb3f9362dd6840d93b.tar.gz
busybox-w32-b8ba6b66f5d730efcf13dbbb3f9362dd6840d93b.tar.bz2
busybox-w32-b8ba6b66f5d730efcf13dbbb3f9362dd6840d93b.zip
bootchartd: better wording in comment
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'init')
-rw-r--r--init/bootchartd.c5
1 files changed, 3 insertions, 2 deletions
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)
306 /* Inform parent that we are ready */ 306 /* Inform parent that we are ready */
307 raise(SIGSTOP); 307 raise(SIGSTOP);
308 308
309 /* If we started by kernel, PATH might be not set. 309 /* If we are started by kernel, PATH might be unset.
310 * And in order to run tar we may need PATH to be set: 310 * In order to find "tar", let's set some sane PATH:
311 */ 311 */
312 if (cmd == CMD_PID1 && !getenv("PATH")) 312 if (cmd == CMD_PID1 && !getenv("PATH"))
313 putenv((char*)bb_PATH_root_path); 313 putenv((char*)bb_PATH_root_path);
314
314 tempdir = make_tempdir(cmd == CMD_START ? argv[2] : NULL); 315 tempdir = make_tempdir(cmd == CMD_START ? argv[2] : NULL);
315 do_logging(); 316 do_logging();
316 finalize(tempdir); 317 finalize(tempdir);