xtensa-build-zephyr: make "tree" optional

"tree" is very useful but it's not critical, not worth failing the build
for.

Also remove a single quote from the help message as it breaks parsing
in one simple editor I use (jed) and possibly others.

Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
Marc Herbert 2021-09-13 19:28:49 +00:00 committed by Liam Girdwood
parent f6bc279da6
commit e3494f5662
1 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ usage: $0 [options] [ platform(s) ] [ -- cmake arguments ]
Ignored by "west build".
-k Path to a non-default rimage signing key.
-c recursively clones Zephyr inside sof before building.
Incompatible with -p. To stop after cloning Zephyr, don't
Incompatible with -p. To stop after cloning Zephyr, do not
pass any platform or cmake argument.
-p Existing Zephyr project directory. Incompatible with -c. If
zephyr-project/modules/audio/sof is missing then a
@ -233,7 +233,7 @@ build_all()
install_opts -m 0755 "$bdir"/zephyr/sof-logger_ep/build/logger/sof-logger \
"$STAGING"/tools/sof-logger
tree "$STAGING"
tree "$STAGING" || ( cd "$STAGING" && ls -R1 )
}
parse_args()