]> code.ossystems Code Review - openembedded-core.git/commit
rootfs.py: Make set -x not break rootfs creation
authorPeter Seebach <peter.seebach@windriver.com>
Thu, 21 May 2015 20:36:35 +0000 (15:36 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 28 Jun 2015 08:41:56 +0000 (09:41 +0100)
commita13185ba4a29fca319b4eb4a76fdbdfcfe767322
tree5b5f51cf424118a856ca4de909739e4d83014898
parentf0bf36c669790f1bcb2f897e61c82b075cb0a83b
rootfs.py: Make set -x not break rootfs creation

The rootfs logfile check errors out if it finds an "exit 1" in
a log. But consider the shell idiom:
if ! $command; then exit 1; fi
and consider a postinstall script with a "set -x" for debugging
purposes (to get log output in /var/log/postinstall.log.)

Solution: Ignore lines prefixed with a +, because those show shell
code even if a specific fragment won't be executed.

(From OE-Core rev: f23f129dba66144abf8fe8450320e01fa4c02f5c)

Signed-off-by: Peter Seebach <peter.seebach@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oe/rootfs.py