fix(linux-tpm): skip PCR0 check with SHA384 algorithm

A third party service 'ftpm' does not throw a non-zero value
of PCR0 with SHA384 algorithm hence skip checking of PCR0
value when this algorithm gets selected.

Change-Id: Ie464e22917008fdf4eab9bb017928755c2794ed3
Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
diff --git a/run_config/fvp-linux.rootfs+ftpm_384 b/run_config/fvp-linux.rootfs+ftpm_384
new file mode 100644
index 0000000..69b45a7
--- /dev/null
+++ b/run_config/fvp-linux.rootfs+ftpm_384
@@ -0,0 +1,25 @@
+#!/usr/bin/env bash
+#
+# Copyright (c) 2021, Arm Limited. All rights reserved.
+#
+# SPDX-License-Identifier: BSD-3-Clause
+#
+# It is a copy of fvp-linux.rootfs+ftpm with another expect script
+# to run
+#
+
+post_tf_build() {
+        # Get the images for the test.
+        edk_url="$tfa_downloads/ftpm/FVP_AARCH64_EFI.fd"
+        rootfs_url="$tfa_downloads/ftpm/boot-fat.uefi.img" get_rootfs
+        url="$edk_url" saveas="edk2.bin" fetch_file
+        archive_file "edk2.bin"
+
+        # Configure the uarts for tracking.
+        uart="0" timeout="600" file="linux-tpm-384.exp" track_expect
+        uart="1" timeout="600" file="tpm-logs.exp" track_expect
+        set_run_env "ports_script" "$ci_root/model/ftpm-ports.awk"
+        set_run_env "num_uarts" "2"
+
+        payload_type="linux" gen_fvp_yaml_template
+}