diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2020-11-11 11:01:29 +0900 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2023-10-17 13:19:25 +0900 |
commit | ff4e876f90e9d296a7fc2bb0f2e966a649ae6713 (patch) | |
tree | 20014c873ba8ead89554d86714a4cf237c103302 /include | |
parent | 948350d63d7c6dec5358f94d9d848530565544a4 (diff) | |
download | u-boot-ff4e876f90e9d296a7fc2bb0f2e966a649ae6713.tar.gz u-boot-ff4e876f90e9d296a7fc2bb0f2e966a649ae6713.tar.bz2 u-boot-ff4e876f90e9d296a7fc2bb0f2e966a649ae6713.zip |
samsung: tizen_amlogic: fix directory path about thor fail
Fix directory path about thor fail.
When flash to directory, it didn't match "/" with filename.
Change-Id: I5cc65c1b8aa5741dfab5b532c070d82146444f68
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/samsung/tizen_amlogic.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/include/samsung/tizen_amlogic.h b/include/samsung/tizen_amlogic.h index 8666425fd2..cd02968bfb 100644 --- a/include/samsung/tizen_amlogic.h +++ b/include/samsung/tizen_amlogic.h @@ -27,15 +27,15 @@ "kvim3_linux.dtb fat 0 1;" \ "boot.scr.uimg fat 0 1;" \ "params.bin fat 0 1;" \ - "/vim3/Image fat 0 1;" \ - "/odroid-n2/Image fat 0 1;" \ - "/odroid-c4/Image fat 0 1;" \ - "/vim3/params.bin fat 0 1;" \ - "/odroid-n2/params.bin fat 0 1;" \ - "/odroid-c4/params.bin fat 0 1;" \ - "/vim3/boot.scr.uimg fat 0 1;" \ - "/odroid-n2/boot.scr.uimg fat 0 1;" \ - "/odroid-c4/boot.scr.uimg fat 0 1;" \ + "vim3/Image fat 0 1;" \ + "odroid-n2/Image fat 0 1;" \ + "odroid-c4/Image fat 0 1;" \ + "vim3/params.bin fat 0 1;" \ + "odroid-n2/params.bin fat 0 1;" \ + "odroid-c4/params.bin fat 0 1;" \ + "vim3/boot.scr.uimg fat 0 1;" \ + "odroid-n2/boot.scr.uimg fat 0 1;" \ + "odroid-c4/boot.scr.uimg fat 0 1;" \ "boot.img part 0 1;" \ "rootfs part 0 2;" \ "system-data part 0 3;" \ @@ -54,15 +54,15 @@ "boot.scr.uimg fat 1 1;" \ "boot.img part 1 1;" \ "params.bin fat 1 1;" \ - "/vim3/Image fat 1 1;" \ - "/odroid-n2/Image fat 1 1;" \ - "/odroid-c4/Image fat 1 1;" \ - "/vim3/params.bin fat 1 1;" \ - "/odroid-n2/params.bin fat 1 1;" \ - "/odroid-c4/params.bin fat 1 1;" \ - "/vim3/boot.scr.uimg fat 1 1;" \ - "/odroid-n2/boot.scr.uimg fat 1 1;" \ - "/odroid-c4/boot.scr.uimg fat 1 1;" \ + "vim3/Image fat 1 1;" \ + "odroid-n2/Image fat 1 1;" \ + "odroid-c4/Image fat 1 1;" \ + "vim3/params.bin fat 1 1;" \ + "odroid-n2/params.bin fat 1 1;" \ + "odroid-c4/params.bin fat 1 1;" \ + "vim3/boot.scr.uimg fat 1 1;" \ + "odroid-n2/boot.scr.uimg fat 1 1;" \ + "odroid-c4/boot.scr.uimg fat 1 1;" \ "rootfs part 1 2;" \ "system-data part 1 3;" \ "user part 1 5;" \ |