init: make the command-line rewrite optional
authorNicolas Carrier <nicolas.carrier@parrot.com>
Thu, 4 Feb 2016 11:18:01 +0000 (12:18 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Thu, 11 Feb 2016 13:23:33 +0000 (14:23 +0100)
commit29eae728e959a382841bd0a32cc1a8d1bcdc9150
tree7ccda1c300308023aa99b0b358db1f0571a0b561
parent383201e7258c3c1646f6d5cab4e813b5c3b3ecd0
init: make the command-line rewrite optional

When launched as PID 1 and after parsing its arguments, init wipes all
all of them except argv[0] and rewrites argv[0] to contain only "init",
so that its command-line appears solely as "init" in tools such as ps.

This patch adds the FEATURE_INIT_MODIFY_CMDLINE which, if set to n, will
make init preserve all its arguments including argv[0], be they parsed or
ignored.
The original command-line used to launch init can then be retrieved in
/proc/1/cmdline on Linux, for example.

Signed-off-by: Nicolas Carrier <nicolas.carrier@parrot.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
init/init.c