common, ubi: use positive return values for ubi check

The ubi check command is expected to not fail and just check whether
a volume exist or not. Currently, when a volume does not exist, the
command fails which leads to an error:
"exit not allowed from main input shell."

Use 1 to indicate that a volume does not exist. This allows to use
ubi check in an if statement, e.g.
if ubi check rootfs; then; echo "exists"; else; echo "not there"; fi
This commit is contained in:
Stefan Agner 2015-04-10 11:25:43 +02:00 committed by Tom Rini
parent 763754549f
commit 6d0f452608
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ static int ubi_check(char *name)
return 0;
}
return -EEXIST;
return 1;
}