Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/src/commit/c35f8693942d8284c635592f263a0fe11abe1d1d/scripts/show-gnu-make You should set ROOT_URL correctly, otherwise the web may not work correctly.
upstream u-boot with additional patches for our devices/boards: https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ; Gbit ethernet patch for some LIME2 revisions ; with SPI flash support
 
 
 
 
 
 
u-boot/scripts/show-gnu-make

25 lines
569 B

#!/bin/sh
#
# Show the command name for GNU Make
#
# U-Boot is supposed to be built on various platforms.
# One problem is that the command 'make' is not always GNU Make.
# (For ex. the command name for GNU Make on FreeBSD is usually 'gmake'.)
# It is not a good idea to hard-code the command name in scripts
# where where GNU Make is expected.
# Call this helper script to get the command name for GNU Make.
#
# SPDX-License-Identifier: GPL-2.0+
#
gnu_make=
for m in make gmake
do
if $m --version 2>/dev/null | grep -q GNU; then
echo $m
exit 0
fi
done
exit 1