From 4a6cb2031228a8a8ca262f78f35b2110704e0b24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Czarnecki?= Date: Mon, 1 Aug 2022 12:25:18 +0200 Subject: [PATCH] platforms: eos-s3: fix bitstream paths MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Czarnecki --- f4pga/platforms/ql-eos-s3.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/f4pga/platforms/ql-eos-s3.json b/f4pga/platforms/ql-eos-s3.json index e2b2e68..ccb7a12 100644 --- a/f4pga/platforms/ql-eos-s3.json +++ b/f4pga/platforms/ql-eos-s3.json @@ -317,17 +317,17 @@ "outputs": { "bitstream": { "mode": "file", - "file": "bitstream-${device}.bit", - "target": "${build_dir?}/bitstream-${device}.bit" + "file": "${:eblif[noext]}.bit", + "target": "${:eblif[noext]}.bit" }, "bitstream_log": { "mode": "stdout", - "target": "${build_dir?}/bitstream-${device}.log" + "target": "${:eblif[noext]}.bit.log" } }, "inputs": { "#1": "${:fasm}", - "#2": "bitstream-${device}.bit", + "#2": "${:eblif[noext]}.bit", "dev-type": "ql-eos-s3" } },