Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/src/commit/4fcd0b33c7a0db2e86cccdc1831db235a6bc1b2d/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
|
|
}
|
|
|