mirror of
https://github.com/linux-sunxi/u-boot-sunxi.git
synced 2024-02-12 11:16:03 +08:00
9 lines
205 B
Bash
9 lines
205 B
Bash
![]() |
#!/usr/bin/awk -f
|
||
|
# extract linker version number from stdin and turn into single number
|
||
|
{
|
||
|
gsub(".*)", "");
|
||
|
split($1,a, ".");
|
||
|
print a[1]*10000000 + a[2]*100000 + a[3]*10000 + a[4]*100 + a[5];
|
||
|
exit
|
||
|
}
|