blob: 23424440da5491574f74ae0947b2752824c61dc5 [file] [log] [blame]
#!/bin/sh
#
# Returns 0 (true) if this device's platform string starts
# with GFRG and 1 (false) otherwise.
#
read plat </etc/platform
if [ "$plat" != "${plat#GFRG}" ]; then
exit 0
else
exit 1
fi