Hi eveyone,
I am coming from a a hint off Github here: https://github.com/armbian/documentation/issues/165. Igor was so kind and redirected me to this community.
I am struggling since beginning christmas to get my EspressoBin to latest versions out of dusty 2018 images.
Device
EspressoBin v7 DDR4 1G 1000_800Mhz
Baseline - What did I do?
- Update U-Boot according https://www.armbian.com/espressobin to devel-18.12.3
- Flashed SD-Card with
Something like this patch:
diff --git a/board/Marvell/mvebu_armada-37xx/board.c b/board/Marvell/mvebu_armada-37xx/board.c
index c6ecc323bb99..0c6ac126d0e7 100644
--- a/board/Marvell/mvebu_armada-37xx/board.c
+++ b/board/Marvell/mvebu_armada-37xx/board.c
@@ -145,6 +145,8 @@ int board_late_init(void)
strcpy(ptr, "fdtfile=marvell/armada-3720-espressobin-emmc.dtb");
else
strcpy(ptr, "fdtfile=marvell/armada-3720-espressobin.dtb");
+ ptr += strlen(ptr) + 1;
+ *ptr = '\0';
return 0;
}