Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
kernel
/
msm-4.19
/
d5ece1cb074b2c7082c9a2948ac598dd0ad40657
/
.
/
scripts
/
ld-version.sh
blob: 0b67edc5bc6fbb7464c2e8ce4f8f141e7eca66fd [
file
] [
log
] [
blame
]
#!/usr/bin/awk -f
# extract linker version number from stdin and turn into single number
{
gsub
(
".*)"
,
""
);
split
(
$1
,
a
,
"."
);
print a
[
1
]*
100000000
+
a
[
2
]*
1000000
+
a
[
3
]*
10000
+
a
[
4
]*
100
+
a
[
5
];
exit
}