]> Git Repo - J-u-boot.git/blob - scripts/ld-version.sh
Merge tag 'u-boot-amlogic-next-20240902' of https://source.denx.de/u-boot/custodians...
[J-u-boot.git] / scripts / ld-version.sh
1 #!/usr/bin/awk -f
2 # SPDX-License-Identifier: GPL-2.0
3 # extract linker version number from stdin and turn into single number
4         {
5         gsub(".*\\)", "");
6         gsub(".*version ", "");
7         gsub("-.*", "");
8         split($1,a, ".");
9         print a[1]*100000000 + a[2]*1000000 + a[3]*10000;
10         exit
11         }
This page took 0.025129 seconds and 4 git commands to generate.