forked from Ivasoft/openwrt
otrx: change command line API to start with a mode
This will allow adding more modes without options conflict. Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 45443
This commit is contained in:
@@ -98,7 +98,7 @@ platform_check_image() {
|
||||
error=1
|
||||
}
|
||||
|
||||
if ! otrx -c "$1" -o "$header_len"; then
|
||||
if ! otrx check "$1" -o "$header_len"; then
|
||||
echo "No valid TRX firmware in the CHK image"
|
||||
error=1
|
||||
fi
|
||||
@@ -113,13 +113,13 @@ platform_check_image() {
|
||||
error=1
|
||||
}
|
||||
|
||||
if ! otrx -c "$1" -o 32; then
|
||||
if ! otrx check "$1" -o 32; then
|
||||
echo "No valid TRX firmware in the CyberTAN image"
|
||||
error=1
|
||||
fi
|
||||
;;
|
||||
"trx")
|
||||
if ! otrx -c "$1"; then
|
||||
if ! otrx check "$1"; then
|
||||
echo "Invalid (corrupted?) TRX firmware"
|
||||
error=1
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user