Root/target/linux/rdc/base-files/lib/upgrade/platform.sh

1PART_NAME=linux
2
3platform_check_image() {
4    [ "$ARGC" -gt 1 ] && return 1
5
6    case "$(get_magic_word "$1")" in
7        # rdc .bin files for ar360w3g
8        474d) return 0;;
9        *)
10            echo "Invalid image type. Please use an appropriate .bin file"
11            return 1
12        ;;
13    esac
14}
15
16# use default for platform_do_upgrade()
17

Archive Download this file



interactive