nixos-riscv/fpga/run-node.sh

34 lines
689 B
Bash
Raw Normal View History

2024-08-26 17:14:53 +02:00
#!/usr/bin/bash
#set -x
set -e
echo "Hello from $(hostname)"
path="$1"
cd "$path"
# First kill any picocom instance
killall picocom || true
# Setup the environment
. env.sh
set -x
# Then perform the boot
./fpgactl -w bitstream.bit -b opensbi.bin -k kernel.bin -i initrd.bin -r rootfs.img
2024-08-26 17:14:53 +02:00
# Restart it again only loading the bootrom and OpenSBI (notice OpenSBI
# relocates itself so it will likely be gone by now)
sleep 1 && ./fpgactl -b opensbi.bin &
2024-08-26 17:14:53 +02:00
timeout=$((30 * 60)) # Always stop after 30 min
timeout_silent=$((10 * 60)) # Stop if 10 min without output
2024-08-26 17:14:53 +02:00
# Set dead switch
sleep $timeout && killall picocom &
2024-08-26 17:14:53 +02:00
picocom -q -x $(($timeout_silent*1000)) -b 115200 $FPGACTL_UART