Skip to content
Snippets Groups Projects
Commit a59d59be authored by Gabor Juhos's avatar Gabor Juhos
Browse files

enable sysupgrade on the WRT160Nl

SVN-Revision: 17202
parent 214f39d4
No related branches found
No related tags found
No related merge requests found
......@@ -21,13 +21,20 @@ platform_check_image() {
}
return 0
;;
tl-wr741nd | tl-wr941nd)
tl-wr741nd | tl-wr941nd)
[ "$magic" != "0100" ] && {
echo "Invalid image type."
return 1
}
return 0
;;
wrt160nl)
[ "$magic" != "4e4c" ] && {
echo "Invalid image type."
return 1
}
return 0
;;
esac
echo "Sysupgrade is not yet supported on $board."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment