From: Lukasz Majewski Date: Wed, 13 Feb 2019 21:46:55 +0000 (+0100) Subject: config: bk4: Update u-boot envs to support NOR memories initial setup X-Git-Tag: v2019.07-rc1~21^2~122 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b3d28ace14ce2dcd09bfce99fdbabe2fe60ea334;p=platform%2Fkernel%2Fu-boot.git config: bk4: Update u-boot envs to support NOR memories initial setup Signed-off-by: Lukasz Majewski --- diff --git a/include/configs/bk4r1.h b/include/configs/bk4r1.h index 7bd3411..05ebb7d 100644 --- a/include/configs/bk4r1.h +++ b/include/configs/bk4r1.h @@ -200,6 +200,24 @@ "ubi create rootfs2 15E15000 d; " \ "ubi create userdata; " \ "ubi detach\0" \ + "setup_nor1=" BK4_NET_INIT \ + "if tftp ${sys_addr} ${tftpdir}ubinor1.img; " \ + "then sf probe 0:0; " \ + "sf erase 0 01000000; " \ + "mtdparts default; " \ + "ubi part nor; " \ + "ubi create nor1fs; " \ + "ubi write ${sys_addr} nor1fs ${filesize}; " \ + "ubi detach; fi\0" \ + "setup_nor2=" BK4_NET_INIT \ + "if tftp ${sys_addr} ${tftpdir}ubinor2.img; " \ + "then sf probe 0:1; " \ + "sf erase 0 01000000; " \ + "mtdparts default; " \ + "ubi part nor; " \ + "ubi create nor2fs; " \ + "ubi write ${sys_addr} nor2fs ${filesize}; " \ + "ubi detach; fi\0" \ "prepare_install_bk4r1_envs=" \ "echo 'Preparing envs for SD card recovery!';" \ "setenv ipaddr 192.168.0.99;" \