From b7d4a10a145d0de0d4129a7b8210d87786e9bcb6 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Thu, 29 Aug 2024 14:41:09 +0200 Subject: [PATCH] Don't load an external bootrom Unfortunalely the bootrom is included in the bitstream now. --- fpga/run-node.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fpga/run-node.sh b/fpga/run-node.sh index 635ca24..8a831cc 100755 --- a/fpga/run-node.sh +++ b/fpga/run-node.sh @@ -18,11 +18,11 @@ killall picocom || true set -x # Then perform the boot -./fpgactl -w bitstream.bit -R bootrom.bin -b opensbi.bin -k kernel.bin -i initrd.bin # -r rootfs.img +./fpgactl -w bitstream.bit -b opensbi.bin -k kernel.bin -i initrd.bin # -r rootfs.img # Restart it again only loading the bootrom and OpenSBI (notice OpenSBI # relocates itself so it will likely be gone by now) -sleep 1 && ./fpgactl -R bootrom.bin -b opensbi.bin & +sleep 1 && ./fpgactl -b opensbi.bin & # Set dead switch sleep 30 && killall picocom &