1
0
Fork 0

configure loading of bitstream at boot time

master
Florian Agbuya 2024-04-05 15:22:13 +08:00 committed by sb10q
parent 3d98549fd1
commit 7c6320f66d
1 changed files with 11 additions and 1 deletions

View File

@ -209,8 +209,18 @@
extraModules = [
"${patched-not-os}/zynq_image.nix"
] ++ pkgs.lib.optionals (board == "fast-servo") [
({ config, pkgs, ... }: {
({ config, pkgs, lib, ... }: {
environment.systemPackages = [ linien-server ];
boot.postBootCommands = lib.mkAfter ''
# Program the FPGA
set +x
echo "Flashing bitstream..."
echo 0 > /sys/class/fpga_manager/fpga0/flags
mkdir -p /lib/firmware
cp ${fast-servo-gateware}/gateware.bin /lib/firmware/
echo gateware.bin > /sys/class/fpga_manager/fpga0/firmware
'';
})];
system = "x86_64-linux";
inherit crossSystem;