Gitiles
Code Review
Sign In
192.168.1.100
/
T800_MD
/
refs/heads/MR3.0
/
.
/
mcu
/
tools
/
chk_verno.pl
blob: 93d99f145115c57fa71a53f2cfea76913725d70b [
file
] [
log
] [
blame
]
rjw
6c1fd8f
2022-11-30 14:33:01 +0800
[
diff
] [
blame
]
1
my
$chkverno
=
$ARGV
[
0
];
2
my
$len
=
rindex $chkverno
.
"\$"
,
"\$"
;
3
if
(
$len
>
63
)
4
{
5
print
"The verno message($len bytes) exceeds 63 bytes,please check it ASAP!\n"
;
6
die
;
7
}
8
else
9
{
10
exit
0
;
11
}