feat(scp): scp/mcp v2.9.0 update - rdn1e1

Updates rdn1edge and rdn1edgex2 test suite to use v2.9.0 scp/mcp
prebuilds

Signed-off-by: Maksims Svecovs <maksims.svecovs@arm.com>
Change-Id: I18bfee67250b61cc1fd1f755b21caba920f79d52
diff --git a/run_config/fvp-rdn1edge b/run_config/fvp-rdn1edge
index 002457e..2063f8b 100644
--- a/run_config/fvp-rdn1edge
+++ b/run_config/fvp-rdn1edge
@@ -7,16 +7,20 @@
 
 fetch_tf_resource() {
 	# Fetch the pre-built SCP/MCP binaries if they haven't been built
+	if [ ! -f "$archive/mcp_ram.bin" ]; then
+		url="$scp_mcp_prebuilts/mcp_ramfw.bin" saveas="mcp_ram.bin" fetch_file
+		archive_file "mcp_ram.bin"
+	fi
 	if [ ! -f "$archive/mcp_rom.bin" ]; then
-		url="$scp_mcp_prebuilts/mcp_rom.bin" fetch_file
+		url="$scp_mcp_prebuilts/mcp_romfw.bin" saveas="mcp_rom.bin" fetch_file
 		archive_file "mcp_rom.bin"
 	fi
 	if [ ! -f "$archive/scp_ram.bin" ]; then
-		url="$scp_mcp_prebuilts/scp_ram.bin" fetch_file
+		url="$scp_mcp_prebuilts/scp_bl2.bin" saveas="scp_ram.bin" fetch_file
 		archive_file "scp_ram.bin"
 	fi
 	if [ ! -f "$archive/scp_rom.bin" ]; then
-		url="$scp_mcp_prebuilts/scp_rom.bin" fetch_file
+		url="$scp_mcp_prebuilts/scp_bl1.bin" saveas="scp_rom.bin" fetch_file
 		archive_file "scp_rom.bin"
 	fi