SoC a1 : scripts : fix the signed start address [1/1]
PD#SWPL-158745
Problem:
The rtos image can not be started.
Solution:
Fixed the signed start address from 0x1000 to 0x10000.
Verify:
A113L_AD403
Change-Id: I5bf244e3c7b6dc88c7516eec9681bd6424394e28
Signed-off-by: fugui.zhang <fugui.zhang@amlogic.com>
diff --git a/publish.sh b/publish.sh
index 757087f..5646fd2 100755
--- a/publish.sh
+++ b/publish.sh
@@ -30,7 +30,7 @@
FIRMWARE_SERVER=firmware.amlogic.com
make_image() {
- mkimage -A $ARCH -O u-boot -T standalone -C none -a 0x1000 -e 0x1000 -n rtos -d $LOCAL_IMAGE_PATH/images/freertos-signed.bin $LOCAL_IMAGE_PATH/images/rtos-uImage
+ mkimage -A $ARCH -O u-boot -T standalone -C none -a 0x10000 -e 0x10000 -n rtos -d $LOCAL_IMAGE_PATH/images/freertos-signed.bin $LOCAL_IMAGE_PATH/images/rtos-uImage
}
publish_images() {