Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/src/commit/8cf2f3602e6778b207f3a95fda6be3fc420a8162/arch/riscv/Kconfig 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/arch/riscv/Kconfig

42 lines
601 B

menu "RISCV architecture"
depends on RISCV
config SYS_ARCH
default "riscv"
choice
prompt "Target select"
optional
config TARGET_NX25_AE250
bool "Support nx25-ae250"
endchoice
source "board/AndesTech/nx25-ae250/Kconfig"
choice
prompt "CPU selection"
default CPU_RISCV_32
config CPU_RISCV_32
bool "RISCV 32 bit"
select 32BIT
help
Choose this option to build an U-Boot for RISCV32 architecture.
config CPU_RISCV_64
bool "RISCV 64 bit"
select 64BIT
help
Choose this option to build an U-Boot for RISCV64 architecture.
endchoice
config 32BIT
bool
config 64BIT
bool
endmenu