Skip to content

Commit

Permalink
installer: improve log output
Browse files Browse the repository at this point in the history
  • Loading branch information
FooDeas committed Jun 23, 2018
1 parent 2561821 commit 75782de
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion scripts/opt/raspberrypi-ua-netinst/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1521,8 +1521,13 @@ if [ "${kernel_module}" = true ]; then
fi
fi


echo -n "Initializing / as ${rootfstype}... "
eval mkfs."${rootfstype}" "${rootfs_mkfs_options}" "${rootpartition}" || fail
eval mkfs."${rootfstype}" "${rootfs_mkfs_options}" "${rootpartition}" | sed 's/^/ /'
if [ "${PIPESTATUS[0]}" -ne 0 ]; then
fail
fi

echo "OK"

echo -n "Mounting new filesystems... "
Expand Down

0 comments on commit 75782de

Please sign in to comment.