Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/src/commit/3242998e24b899540790077f8bbde447f4c039c6/scripts/ld-version.sh
You should set ROOT_URL correctly, otherwise the web may not work correctly.
|
#!/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
|
|
}
|
|
|