scripts: sd_fusing_rpi4: change a name from modules_a/b to module_a/b 86/277786/1
authorJaehoon Chung <jh80.chung@samsung.com>
Wed, 13 Jul 2022 07:34:44 +0000 (16:34 +0900)
committerJaehoon Chung <jh80.chung@samsung.com>
Wed, 13 Jul 2022 07:34:44 +0000 (16:34 +0900)
modules_a/b is typo.
Change a correct name from modules_a/b to module_a/b.

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

index a9a9d25..1a3c053 100644 (file)
        "name=system-data,size=1344MiB,uuid=${uuid_gpt_data},type=linux;"       \
        "name=none,size=36MiB,uuid=${uuid_gpt_none},type=linux;"        \
        "name=user,size=6636MiB,uuid=${uuid_gpt_user},type=linux;"      \
-       "name=modules_a,size=32MiB,uuid=${uuid_gpt_modules_a},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=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=modules_b,size=32MiB,uuid=${uuid_gpt_modules_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=hal_b,size=256MiB,uuid=${uuid_gpt_hal_b},type=linux;"     \
index e902e12..1e999d5 100755 (executable)
@@ -18,13 +18,13 @@ declare -a PART_TABLE=(
        "rootfs.img"                    2       4M      rootfs_a                ext4
        "system-data.img"               3       4M      system-data             ext4
        "user.img"                      5       4M      user                    ext4
-       "modules.img"                   6       4M      modules_a               ext4
+       "modules.img"                   6       4M      module_a                ext4
        "ramdisk.img"                   7       4M      ramdisk_a               ext4
        "ramdisk-recovery.img"          8       4M      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      modules_b               ext4
+       "modules.img"                   13      4M      module_b                ext4
        "ramdisk.img"                   14      4M      ramdisk_b               ext4
        "ramdisk-recovery.img"          15      4M      recovery_b              ext4
        "hal.img"                       16      4M      hal_b                   ext4
@@ -32,7 +32,7 @@ declare -a PART_TABLE=(
 declare -a PART_TABLE_B=(
        "boot.img"                      11      4M      boot_b                  vfat
        "rootfs.img"                    12      4M      rootfs_b                ext4
-       "modules.img"                   13      4M      modules_b               ext4
+       "modules.img"                   13      4M      module_b                ext4
        "ramdisk.img"                   14      4M      ramdisk_b               ext4
        "ramdisk-recovery.img"          15      4M      recovery_b              ext4
        "hal.img"                       16      4M      hal_b                   ext4
@@ -501,7 +501,7 @@ function check_device () {
 
 function print_logo () {
        echo ""
-       echo "Raspberry Pi4 downloader, version 1.0.3"
+       echo "Raspberry Pi4 downloader, version 1.0.4"
        echo ""
 }