Sign in
gfiber
/
buildroot
/
a3674d82527508b9a6bc73dcd0a641608b4e9be9
/
.
/
fs
/
skeleton
/
bin
/
is-windcharger
blob: 6f7aa346d21a60938d53ff99dc5a447df530c732 [
file
] [
log
] [
blame
]
#!/bin/sh
#
# Returns 0 (true) if this device's platform string starts
# with GFMN and 1 (false) otherwise.
#
read plat
</
etc
/
platform
if
[
"$plat"
!=
"${plat#GFMN}"
];
then
exit
0
else
exit
1
fi