ci: remove legacy SCP CI support
The code removed by this change represents the remaining dead remnants
of the previous SCP CI, which used to piggy-back on the TF-A to run its
testing regime. This scenario is no longer supported, so remove it.
Change-Id: If0ed5096f7e208c0865f9aac9c15ab4beddc8c6b
Signed-off-by: Chris Kay <chris.kay@arm.com>
diff --git a/n1sdp_utils.sh b/n1sdp_utils.sh
index f0c196a..e79c3f2 100644
--- a/n1sdp_utils.sh
+++ b/n1sdp_utils.sh
@@ -21,22 +21,14 @@
fetch_and_archive
#Fetch pre-built SCP/MCP binaries if they haven't been built
- if [ ! -f "$archive/mcp_rom.bin" ]; then
- url="$scp_mcp_prebuilts/mcp_romfw.bin" filename="mcp_rom.bin" \
- fetch_and_archive
- fi
- if [ ! -f "$archive/scp_rom.bin" ]; then
- url="$scp_mcp_prebuilts/scp_romfw.bin" filename="scp_rom.bin" \
- fetch_and_archive
- fi
- if [ ! -f "$archive/scp_ram.bin" ]; then
- url="$scp_mcp_prebuilts/scp_ramfw.bin" filename="scp_ram.bin" \
- fetch_and_archive
- fi
- if [ ! -f "$archive/mcp_ram.bin" ]; then
- url="$scp_mcp_prebuilts/mcp_ramfw.bin" filename="mcp_ram.bin" \
- fetch_and_archive
- fi
+ url="$scp_mcp_prebuilts/mcp_romfw.bin" filename="mcp_rom.bin" \
+ fetch_and_archive
+ url="$scp_mcp_prebuilts/scp_romfw.bin" filename="scp_rom.bin" \
+ fetch_and_archive
+ url="$scp_mcp_prebuilts/scp_ramfw.bin" filename="scp_ram.bin" \
+ fetch_and_archive
+ url="$scp_mcp_prebuilts/mcp_ramfw.bin" filename="mcp_ram.bin" \
+ fetch_and_archive
}
gen_recovery_image() {