From 81b13b31a011aa10400c4064ab341f4e015ec89b Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Tue, 3 Nov 2015 01:47:43 +0100 Subject: update.sh: set board_name for Colibri VF50/VF61 Up until now, U-Boot for Colibri VF50/VF61 did not had an environment variable board_name. Use the soc environment variable to set the board_name. --- recipes/images/files/library/fwd_blk.scr | 2 ++ recipes/images/files/library/fwd_eth.scr | 3 +++ 2 files changed, 5 insertions(+) (limited to 'recipes') diff --git a/recipes/images/files/library/fwd_blk.scr b/recipes/images/files/library/fwd_blk.scr index f694caa..fecedef 100644 --- a/recipes/images/files/library/fwd_blk.scr +++ b/recipes/images/files/library/fwd_blk.scr @@ -1,6 +1,8 @@ #the update.sh script renames this. fwd_blk.scr -> ../flash_blk.img test -n ${interface} || setenv interface mmc test -n ${drive} || setenv drive 1 +test -z "${board_name}" && test "${soc}" = "vf500" && setenv board_name colibri_vf +test -z "${board_name}" && test "${soc}" = "vf610" && setenv board_name colibri_vf test "${board_name}" = "colibri_t20" && setenv drive 0 test "${board_name}" = "colibri_vf" && setenv drive 0 diff --git a/recipes/images/files/library/fwd_eth.scr b/recipes/images/files/library/fwd_eth.scr index 8b35af0..d7ea35c 100644 --- a/recipes/images/files/library/fwd_eth.scr +++ b/recipes/images/files/library/fwd_eth.scr @@ -1,3 +1,6 @@ #the update.sh script renames this. fwd_eth.scr -> ../flash_eth.img +test -z "${board_name}" && test "${soc}" = "vf500" && setenv board_name colibri_vf +test -z "${board_name}" && test "${soc}" = "vf610" && setenv board_name colibri_vf + test -n ${board_name} || echo "board_name env not set!" && exit tftpboot ${loadaddr} "${board_name}/flash_eth.img" && source ${loadaddr} -- cgit v1.2.3