diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2023-04-06 16:36:37 +0900 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2023-10-17 13:19:40 +0900 |
commit | 4281f95bb07489e7f72b3c7bfa0d21167a096bf6 (patch) | |
tree | b686b3bffca09ec75f3d6ab696cbf8654176d72d | |
parent | 6e34580c1f189dd001d872b3fcd0812db43d36e9 (diff) | |
download | u-boot-4281f95bb07489e7f72b3c7bfa0d21167a096bf6.tar.gz u-boot-4281f95bb07489e7f72b3c7bfa0d21167a096bf6.tar.bz2 u-boot-4281f95bb07489e7f72b3c7bfa0d21167a096bf6.zip |
scripts: sd_fusing_vf2: Support to flash u-boot and spl image
Support to flash u-boot and spl image with script.
- u-boot + opensbi : u-boot.img
- spl : u-boot-sp.bin.normal.out
It can be changed to other name in future.
If change image names, it will be changed.
Change-Id: Iba4337f9591b339c37a1207848794b92da56542a
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
-rwxr-xr-x | scripts/tizen/sd_fusing_vf2.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/tizen/sd_fusing_vf2.sh b/scripts/tizen/sd_fusing_vf2.sh index 9ef1acbeee..c6c6311087 100755 --- a/scripts/tizen/sd_fusing_vf2.sh +++ b/scripts/tizen/sd_fusing_vf2.sh @@ -14,6 +14,8 @@ declare -i ab_option=0 # binary name | part number | bs | label | fs type declare -a PART_TABLE=( + "u-boot-spl.bin.normal.out" 1 4M SPL raw + "u-boot.img" 2 4M u-boot raw "boot.img" 3 4M boot_a vfat "rootfs.img" 5 4M rootfs_a ext4 "system-data.img" 6 4M system-data ext4 |