To update the OS_3.0.0, add the prebuilt image.
Read the READM.A710_os_3.0.0.
Change-Id: Ie8b245eec5080918bc4e8658eee3f516baad6372
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
--- /dev/null
+1. Description:
+==============
+
+These images are for migrating ARTIK Software version to Tizen OS_3.0.0.
+SamsungARTIK github is provided the migration image on git repository.
+(https://github.com/SamsungARTIK/boot-firmwares-artik710)
+
+It needs to downgrade for using the Tizen booting.
+
+*NOTE:
+These images are for ARTIK710_OS_3.0.0.
+
+2. Usage:
+=========
+
+Target device side:
+
+#artik710:fastboot 0
+
+Host side:
+$./flash_boot_for_tizen.sh
+
+Then it will be flased all image into artik710S board.
+
+3. Image information:
+=====================
+- bl-emmcboot.img - from SamsungARTIK github
+- fip-loader-emmc.img - from SamsungARTIK github
+- partmap_artik710_tizen_emmc.txt - Tizen specific
+- fip-nonsecure.img - from Tizen Released image
+- tizen_params.bin - from Tizen Released image
+- boot.img - from Tizen Released image
+- flash_boot_for_tizen.sh - Tizen specific
+
+4. Contact
+==========
+If face on some problems, contact to Tizen Kernel Part.
--- /dev/null
+#!/bin/bash
+
+echo "Fusing ARTIK710 OS_3.0.0 bootloader binaries..."
+sudo fastboot flash partmap ./partmap_artik710_tizen_emmc.txt
+sudo fastboot flash 2ndboot ./bl1-emmcboot.img
+sudo fastboot flash fip-loader ./fip-loader-emmc.img
+sudo fastboot flash fip-nonsecure ./fip-nonsecure.img
+sudo fastboot flash env ./tizen_params.bin
+sudo fastboot flash boot ./boot.img
+
+sudo fastboot reboot
+
+echo "Fusing done"
+echo "You have to resize the rootfs after first booting"
--- /dev/null
+flash=mmc,0:2ndboot:2nd:0x200,0x10000:bl1-emmcboot.img;
+flash=mmc,0:fip-loader:boot:0x10200,0x50000:fip-loader-emmc.img;
+flash=mmc,0:fip-secure:boot:0x60200,0x180000:fip-secure.img;
+flash=mmc,0:fip-nonsecure:boot:0x1E0200,0x100000:fip-nonsecure.img;
+flash=mmc,0:env:env:0x2E0200,0x4000:params.bin;
+flash=mmc,0:boot:ext4:0x400000,0x3000000:boot.img;
+flash=mmc,0:modules:ext4:0x3400000,0x2000000:modules.img;
+flash=mmc,0:rootfs:ext4:0x5400000,0x60000000:rootfs.img;
+flash=mmc,0:system-data:ext4:0x65500000,0x40000000:system-data.img;
+flash=mmc,0:user:ext4:0xA4500000,0:user.img;