From fb6f53d9c0444f5072e90b91e3f21a1af108b549 Mon Sep 17 00:00:00 2001 From: Robert Nelson Date: Mon, 12 Aug 2013 15:04:44 -0500 Subject: [PATCH] cleanup/merge: sfdisk_boot_partition -> sfdisk_partition_layout Signed-off-by: Robert Nelson --- mk_mmc.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mk_mmc.sh b/mk_mmc.sh index 673b76d..430b45f 100755 --- a/mk_mmc.sh +++ b/mk_mmc.sh @@ -1127,10 +1127,10 @@ unmount_all_drive_partitions () { sync } -sfdisk_boot_partition () { +sfdisk_partition_layout () { #Generic boot partition created by sfdisk echo "" - echo "Using sfdisk to create BOOT partition" + echo "Using sfdisk to create partition layout" echo "-----------------------------" LC_ALL=C sfdisk --in-order --Linux --unit M "${media}" <<-__EOF__ @@ -1185,18 +1185,18 @@ create_partitions () { case "${bootloader_location}" in fatfs_boot) - sfdisk_boot_partition + sfdisk_partition_layout ;; dd_uboot_boot) dd_uboot_boot - sfdisk_boot_partition + sfdisk_partition_layout ;; dd_spl_uboot_boot) dd_spl_uboot_boot - sfdisk_boot_partition + sfdisk_partition_layout ;; *) - sfdisk_boot_partition + sfdisk_partition_layout ;; esac format_boot_partition