fix FSBL build

This commit is contained in:
Robin Mueller
2025-10-07 16:36:16 +02:00
parent 7d5aadbbf7
commit ba2047ae7e
3 changed files with 7 additions and 3 deletions

2
zynq/.gitignore vendored
View File

@@ -1 +1 @@
/Cargo.lock
Cargo.lock

View File

@@ -11,7 +11,11 @@ members = [
"examples/embassy",
"examples/zedboard",
"zedboard-fsbl",
"zedboard-bsp",
"zedboard-qspi-flasher",
]
exclude = [
# Exclude, can not be built with debug optimization level, too large.
"zedboard-fsbl",
]

View File

@@ -9,7 +9,7 @@ repository = "https://egit.irs.uni-stuttgart.de/rust/zynq7000-rs"
license = "MIT OR Apache-2.0"
[dependencies]
cortex-ar = "0.3"
cortex-ar = { version = "0.3", features = ["critical-section-single-core"] }
zynq7000-rt = { path = "../zynq7000-rt" }
zynq7000 = { path = "../zynq7000" }
zynq7000-hal = { path = "../zynq7000-hal" }