TERES/SOFTWARE/A64-TERES/u-boot_new/scripts/ld-version.sh
Dimitar Gamishev 093685c7d8 u-boot
2017-10-13 14:02:55 +03:00

9 lines
205 B
Bash
Executable File

#!/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
}