blob: 3e97d37a9a80380cb7e902deb7ba74a262a889f9 [file] [log] [blame]
#!/bin/sh
#
# Returns 0 (true) if this device has a tuneable laser
#
. /etc/utils.sh
plat=$(cat /etc/platform)
if startswith "$plat" "GFLT3" ; then
exit 0
else
exit 1
fi