Skip to content

Commit 683907c

Browse files
committed
template_setup_posix: Suppress Yocto nativesdk installer messages
The Linux host tools for Zephyr SDK are packaged using the Yocto nativesdk recipe and its installer may print out the messages that can be potentially misleading to the Zephyr SDK users, who do not need to understand the internals of the Zephyr SDK host tools integration. This commit updates the setup script to suppress any console outputs from the Yocto nativesdk installer script. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
1 parent 59b2286 commit 683907c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/template_setup_posix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ if [ "${do_hosttools}" = "y" ]; then
236236
echo "Installing host tools ..."
237237
case ${host} in
238238
linux-*)
239-
./zephyr-sdk-${HOSTTYPE}-hosttools-standalone-0.9.sh -y -d .
239+
./zephyr-sdk-${HOSTTYPE}-hosttools-standalone-0.9.sh -y -d . &> /dev/null
240240
assert_rc "ERROR: Host tools installation failed" 30
241241
;;
242242
macos-*)

0 commit comments

Comments
 (0)