2013-12-09 21:25:13 -07:00
|
|
|
#!/bin/sh
|
2015-01-18 12:36:49 -07:00
|
|
|
# Copyright 2014 Conrad Lara
|
|
|
|
|
2015-03-22 00:03:24 -06:00
|
|
|
. /lib/functions.sh
|
2013-12-09 21:25:13 -07:00
|
|
|
|
|
|
|
include /lib/upgrade/
|
|
|
|
|
|
|
|
if (eval platform_check_image "$*")
|
|
|
|
then
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return 1;
|
|
|
|
fi
|
|
|
|
|
|
|
|
|