scripts: sd_fusing_rpi4: change a name from recovery to ramdisk-recovery
authorJaehoon Chung <jh80.chung@samsung.com>
Thu, 14 Jul 2022 02:29:38 +0000 (11:29 +0900)
committerJaehoon Chung <jh80.chung@samsung.com>
Tue, 17 Oct 2023 04:19:36 +0000 (13:19 +0900)
Change a name from recovery_a/b to ramdisk-recovery_a/b.

Change-Id: I36593eccf4e4e33989365a180951434d37599c75
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
include/samsung/tizen_rpi.h
scripts/tizen/sd_fusing_rpi4.sh

index 5a1df30..32821d3 100644 (file)
        "name=user,size=6636MiB,uuid=${uuid_gpt_user},type=linux;"      \
        "name=module_a,size=32MiB,uuid=${uuid_gpt_module_a},type=linux;"        \
        "name=ramdisk_a,size=32MiB,uuid=${uuid_gpt_ramdisk_a},type=linux;"      \
-       "name=recovery_a,size=32MiB,uuid=${uuid_gpt_recovery_a},type=linux;"    \
+       "name=ramdisk-recovery_a,size=32MiB,uuid=${uuid_gpt_ramdisk-recovery_a},type=linux;"    \
        "name=inform,size=8MiB,uuid=${uuid_gpt_inform},type=linux;"     \
        "name=hal_a,size=256MiB,uuid=${uuid_gpt_hal_a},type=linux;"     \
        "name=boot_b,size=64MiB,uuid=${uuid_gpt_boot_b},type=C12A7328-F81F-11D2-BA4B-00A0C93EC93B;"     \
        "name=rootfs_b,size=3072MiB,uuid=${uuid_gpt_rootf_b},type=linux;"       \
        "name=module_b,size=32MiB,uuid=${uuid_gpt_module_b},type=linux;"        \
        "name=ramdisk_b,size=32MiB,uuid=${uuid_gpt_ramdisk_b},type=linux;"      \
-       "name=recovery_b,size=32MiB,uuid=${uuid_gpt_recovery_b},type=linux;"    \
+       "name=ramdisk-recovery_b,size=32MiB,uuid=${uuid_gpt_ramdisk-recovery_b},type=linux;"    \
        "name=hal_b,size=256MiB,uuid=${uuid_gpt_hal_b},type=linux;"     \
        "name=reserved0,size=4MiB,uuid=${uuid_gpt_reserved0},type=linux;"       \
        "name=reserved1,size=64MiB,uuid=${uuid_gpt_reserved1},type=linux;"      \
index 5178834..430018f 100755 (executable)
@@ -20,13 +20,13 @@ declare -a PART_TABLE=(
        "user.img"                      5       4M      user                    ext4
        "modules.img"                   6       4M      module_a                ext4
        "ramdisk.img"                   7       4M      ramdisk_a               ext4
-       "ramdisk-recovery.img"          8       4M      recovery_a              ext4
+       "ramdisk-recovery.img"          8       4M      ramdisk-recovery_a      ext4
        "hal.img"                       10      4M      hal_a                   ext4
        "boot.img"                      11      4M      boot_b                  vfat
        "rootfs.img"                    12      4M      rootfs_b                ext4
        "modules.img"                   13      4M      module_b                ext4
        "ramdisk.img"                   14      4M      ramdisk_b               ext4
-       "ramdisk-recovery.img"          15      4M      recovery_b              ext4
+       "ramdisk-recovery.img"          15      4M      ramdisk-recovery_b      ext4
        "hal.img"                       16      4M      hal_b                   ext4
        )
 declare -a PART_TABLE_B=(
@@ -34,7 +34,7 @@ declare -a PART_TABLE_B=(
        "rootfs.img"                    12      4M      rootfs_b                ext4
        "modules.img"                   13      4M      module_b                ext4
        "ramdisk.img"                   14      4M      ramdisk_b               ext4
-       "ramdisk-recovery.img"          15      4M      recovery_b              ext4
+       "ramdisk-recovery.img"          15      4M      ramdisk-recovery_b      ext4
        "hal.img"                       16      4M      hal_b                   ext4
        )
 
@@ -505,7 +505,7 @@ function check_device () {
 
 function print_logo () {
        echo ""
-       echo "Raspberry Pi4 downloader, version 1.0.4"
+       echo "Raspberry Pi4 downloader, version 1.0.5"
        echo ""
 }