summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Agner <stefan.agner@toradex.com>2016-06-08 16:13:06 -0700
committerMax Krummenacher <max.krummenacher@toradex.com>2016-06-30 13:26:24 +0200
commit5a08d18cdff224b5b76358e86c29cfe41a554a5b (patch)
treefc42baf48ccf152b1814597f64f62997ddbb9b88
parent828fc9de793d274b2d7f12451fe8bccbbe968c75 (diff)
update.sh: vf: fix typo in message and remove unnecessary echo
Signed-off-by: Stefan Agner <stefan.agner@toradex.com> Acked-by: Max Krummenacher <max.krummenacher@toradex.com>
-rwxr-xr-xrecipes/images/files/colibri-vf/update.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/recipes/images/files/colibri-vf/update.sh b/recipes/images/files/colibri-vf/update.sh
index 4e21173..2ea5b73 100755
--- a/recipes/images/files/colibri-vf/update.sh
+++ b/recipes/images/files/colibri-vf/update.sh
@@ -22,7 +22,7 @@ Flash()
echo "'run prepare_ubi'"
echo "followed by one of:"
echo "'run update_kernel'"
- echo "'run update_rootfs'"
+ echo "'run update_dtb'"
echo "'run update_rootfs'"
echo ""
echo ""
@@ -188,7 +188,6 @@ sudo mkdir -p "$OUT_DIR"
COPIED=false
if test -n "${KERNEL_DEVICETREE}"; then
for DTB_FILE in ${KERNEL_DEVICETREE}; do
- echo ${BINARIES}/${KERNEL_IMAGETYPE}-${DTB_FILE}
if [ -e "${BINARIES}/${KERNEL_IMAGETYPE}-${DTB_FILE}" ]; then
sudo cp ${BINARIES}/${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${DTB_FILE} "$OUT_DIR/${DTB_FILE}"
COPIED=true