feat(scp): scp/mcp v2.10.0 update - rdv1

Updates rdv1 test suite to use v2.10.0 scp/mcp prebuilt binaries

Signed-off-by: Jayanth Dodderi Chidanand <jayanthdodderi.chidanand@arm.com>
Change-Id: Ie842632405b244c0cae45d0a7efe0e83905aeb9d
diff --git a/run_config/fvp-rdv1 b/run_config/fvp-rdv1
index fee04b7..4cf4be2 100644
--- a/run_config/fvp-rdv1
+++ b/run_config/fvp-rdv1
@@ -1,6 +1,6 @@
 #!/usr/bin/env bash
 #
-# Copyright (c) 2020, Arm Limited. All rights reserved.
+# Copyright (c) 2020-2022, Arm Limited. All rights reserved.
 #
 # SPDX-License-Identifier: BSD-3-Clause
 #
@@ -8,19 +8,19 @@
 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
+		url="$scp_mcp_prebuilts/rdv1-mcp-bl2.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_romfw.bin" saveas="mcp_rom.bin" fetch_file
+		url="$scp_mcp_prebuilts/rdv1-mcp-bl1.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_bl2.bin" saveas="scp_ram.bin" fetch_file
+		url="$scp_mcp_prebuilts/rdv1-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_bl1.bin" saveas="scp_rom.bin" fetch_file
+		url="$scp_mcp_prebuilts/rdv1-bl1.bin" saveas="scp_rom.bin" fetch_file
 		archive_file "scp_rom.bin"
 	fi