From ef9feb0f7c22dbae0db253d8458c74a18c939cfd Mon Sep 17 00:00:00 2001 From: PMiranda Date: Thu, 30 May 2024 23:20:48 +0100 Subject: [PATCH] fix(sim): create `boot.flow` file in sim - update simulations build makefile to create `boot.flow` file required by new bootloader --- hardware/simulation/sim_build.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hardware/simulation/sim_build.mk b/hardware/simulation/sim_build.mk index 3244fd40..60803ab2 100644 --- a/hardware/simulation/sim_build.mk +++ b/hardware/simulation/sim_build.mk @@ -1,5 +1,6 @@ # Add iob_soc_opencryptolinux software as a build dependency HEX+=iob_soc_opencryptolinux_boot.hex iob_soc_opencryptolinux_firmware.hex +HEX+=boot_flow ROOT_DIR :=../.. include $(ROOT_DIR)/software/sw_build.mk @@ -23,3 +24,5 @@ GRAB_TIMEOUT ?= 7200 TEST_LIST+=test1 test1: make -C ../../ fw-clean SIMULATOR=$(SIMULATOR) && make -C ../../ sim-clean SIMULATOR=$(SIMULATOR) && make run SIMULATOR=$(SIMULATOR) + +.PHONY: boot_flow