refactor(sgi): change "sgi" to "nrd" within file names

As part of the move from "sgi" to "neoverse_rd", rename every occurance
of "sgi" within file names to "nrd".

Signed-off-by: Rohit Mathew <Rohit.Mathew@arm.com>
Change-Id: I587072f1dd42bbda2730e24139c88945908aa730
diff --git a/run_config/fvp-linux.nrd b/run_config/fvp-linux.nrd
new file mode 100644
index 0000000..946c00c
--- /dev/null
+++ b/run_config/fvp-linux.nrd
@@ -0,0 +1,29 @@
+#!/usr/bin/env bash
+#
+# Copyright (c) 2019-2024, Arm Limited and Contributors. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+
+fetch_tf_resource() {
+	image="kernel" type="sgi-busybox" get_boot_image
+	image="initrd" type="sgi-ramdisk" get_boot_image
+
+	url="$nrd_prebuilts/grub-busybox.img" saveas="busybox.bin" fetch_file
+	url="$nrd_prebuilts/ramdisk-busybox.img" saveas="ramdisk.bin" fetch_file
+
+	archive_file "busybox.bin"
+	archive_file "ramdisk.bin"
+}
+
+generate_lava_job_template() {
+	uart="0" port="5004" file="trusted-firmware-nrd.exp" track_expect
+	uart="1" port="5003" file="linux-busybox-nrd.exp" timeout="1800" \
+		set_primary="1" track_expect
+
+	set_uart_port "${archive:?}" 2 5000
+	set_uart_port "${archive:?}" 3 5001
+	set_uart_port "${archive:?}" 4 5002
+
+	payload_type="linux" gen_yaml_template
+}