Skip to content
Snippets Groups Projects
Commit 4ebe88aa authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Support --opt noflash option to overrule automatic flash detection.

parent 79a6dbf9
Branches
Tags
No related merge requests found
...@@ -147,7 +147,10 @@ echo -n "Image $IMAGE_RBFNAME found running on $ACT_IMAGE processing nodes: " ...@@ -147,7 +147,10 @@ echo -n "Image $IMAGE_RBFNAME found running on $ACT_IMAGE processing nodes: "
NOF_UNIBOARDS=$(echo $UNBS, | grep -o ',' | wc -l) NOF_UNIBOARDS=$(echo $UNBS, | grep -o ',' | wc -l)
NOF_REQUIRED_MATCHING_IMAGES=$(($NOF_UNIBOARDS * 8)) NOF_REQUIRED_MATCHING_IMAGES=$(($NOF_UNIBOARDS * 8))
if [ "$ACT_IMAGE" == "$NOF_REQUIRED_MATCHING_IMAGES" ]; then if [ "$OPTIONS" == "noflash" ]; then
echo Continuing without processing node reflash due to noflash option
FLASH=FALSE
elif [ "$ACT_IMAGE" == "$NOF_REQUIRED_MATCHING_IMAGES" ]; then
echo Continuing without processing node reflash echo Continuing without processing node reflash
FLASH=FALSE FLASH=FALSE
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment