gbmc-sysinit: Generalize BIOS transfer preparation naming

Summary:
Change the function naming to be more generic to better fit other
ways of providing the BIOS image.

Tested: N/A

Fusion-Link: fusion2 N/A - presubmit not available

Google-Bug-Id: N/A
Change-Id: I5200974b3ef09d6f5f427b3190539de0532a175d
Signed-off-by: Kyle Nieman <kyle.nieman@fii-na.corp-partner.google.com>
diff --git a/recipes-google/gbmc-sysinit/server3/gbmc_sysinit.sh b/recipes-google/gbmc-sysinit/server3/gbmc_sysinit.sh
index d769498..c8110c7 100644
--- a/recipes-google/gbmc-sysinit/server3/gbmc_sysinit.sh
+++ b/recipes-google/gbmc-sysinit/server3/gbmc_sysinit.sh
@@ -24,7 +24,7 @@
   fi
 
   local index="${1}"
-  transfer_bios_image_to_dram ${index}
+  prepare_bios_for_host ${index}
 }
 
 # Exit without running main() if sourced
diff --git a/recipes-google/gbmc-sysinit/server3/gbmc_sysinit_helper.sh b/recipes-google/gbmc-sysinit/server3/gbmc_sysinit_helper.sh
index 950a9b7..2e83ff6 100644
--- a/recipes-google/gbmc-sysinit/server3/gbmc_sysinit_helper.sh
+++ b/recipes-google/gbmc-sysinit/server3/gbmc_sysinit_helper.sh
@@ -14,7 +14,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-transfer_bios_image_to_dram() {
-  echo "transfer_bios_image_to_dram is not implemented" >&2
+prepare_bios_for_host() {
+  echo "prepare_bios_for_host is not implemented" >&2
   return 1
 }