blob: cf1075c77d8bdf4e1362f7b0e3d558766095dd75 [file] [log] [blame]
#!/bin/sh
#
# Returns 0 (true) if this device's platform string starts with GFLT
#
. /etc/utils.sh
plat=$(cat /etc/platform)
if startswith "$plat" "GFLT" ; then
exit 0
else
exit 1
fi