summaryrefslogtreecommitdiff
path: root/recipes/images/files/library/fwd_blk.scr
diff options
context:
space:
mode:
authorStefan Agner <stefan.agner@toradex.com>2015-11-03 01:23:54 +0100
committerStefan Agner <stefan.agner@toradex.com>2015-11-03 01:51:17 +0100
commit238d2f4331b08749bbfcfa21cfd76a2acb4c106e (patch)
treeb13e652ab4b805bd84abbe51fd92dcd19ee763df /recipes/images/files/library/fwd_blk.scr
parent1820151ae6735d6d3a31e4852b482b1f6a1953dc (diff)
update.sh: source update script only if loaded successfully
Source the update script only if loading succeeded. This avoids loops if board_name is not set. Also add a test if board_name is really set since this variable is/was not available in older U-Boots.
Diffstat (limited to 'recipes/images/files/library/fwd_blk.scr')
-rw-r--r--recipes/images/files/library/fwd_blk.scr4
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/images/files/library/fwd_blk.scr b/recipes/images/files/library/fwd_blk.scr
index 9db3744..f694caa 100644
--- a/recipes/images/files/library/fwd_blk.scr
+++ b/recipes/images/files/library/fwd_blk.scr
@@ -4,5 +4,5 @@ test -n ${drive} || setenv drive 1
test "${board_name}" = "colibri_t20" && setenv drive 0
test "${board_name}" = "colibri_vf" && setenv drive 0
-fatload ${interface} ${drive}:1 ${loadaddr} ${board_name}/flash_blk.img
-source ${loadaddr}
+test -n ${board_name} || echo "board_name env not set!" && exit
+fatload ${interface} ${drive}:1 ${loadaddr} ${board_name}/flash_blk.img && source ${loadaddr}