【原创】Tiny6410用SD卡烧写LInux到Nandflash


【原创】Tiny6410用SD卡烧写LInux到Nandflash


在SDBOOT模式下有三种烧写方式:SD卡快速烧写;SD卡交互烧写;usb下载烧写。

烧写的关键在于配置文件 FriendlyARM.ini 的不同,通过下面的配置文件可以看到之间的不同之处

1. SD卡快速烧写

此方式用户只需将启动方式选为SDBOOT,然后打开电源开关即可,系统自动烧写系统。

配置文件代码

<span style="font-size:18px;">#This line cannot be removed. by FriendlyARM(www.arm9.net)

CheckOneButton=No
Action=install
OS= linux

VerifyNandWrite=No

StatusType = Beeper| LED

#################### Linux #####################
Linux-BootLoader = superboot-6410.bin
Linux-Kernel = Linux/zImage
Linux-CommandLine = root=ubi0:FriendlyARM-root ubi.mtd=2 rootfstype=ubifs  init=/linuxrc console=ttySAC0,115200
Linux-RootFs-InstallImage = Linux/rootfs_qtopia_qt4-mlc2.ubi
Linux-RootFs-RunImage = Linux/rootfs_qtopia_qt4.ext3
</span>

2. SD卡交互烧写

此方式通过LCD屏和用户交互,需将启动方式选为SDBOOT,用户通过按键选择要烧写的系统。

具体操作方式请参考友善之臂提供的 Tiny6410刷机指南 --- 》1.2.1节内容

配置文件代码

<span style="font-size:18px;">#This line cannot be removed. by FriendlyARM(www.arm9.net)

CheckOneButton=Yes
Action=install
OS= linux

VerifyNandWrite=No

StatusType = Beeper| LED

#################### Linux #####################
Linux-BootLoader = superboot-6410.bin
Linux-Kernel = Linux/zImage
Linux-CommandLine = root=ubi0:FriendlyARM-root ubi.mtd=2 rootfstype=ubifs  init=/linuxrc console=ttySAC0,115200
Linux-RootFs-InstallImage = Linux/rootfs_qtopia_qt4-mlc2.ubi
Linux-RootFs-RunImage = Linux/rootfs_qtopia_qt4.ext3
</span>

3. usb下载烧写

此方式需将启动方式选为SDBOOT,用串口操作开发板,通过DNW用usb下载系统。

具体操作方式请参考友善之臂提供的 Tiny6410刷机指南 ---》 2.1节内容


配置文件代码

<span style="font-size:18px;">#This line cannot be removed. by FriendlyARM(www.arm9.net)

CheckOneButton=Yes
Action=install
OS= linux

VerifyNandWrite=Yes

StatusType = Beeper| LED

#################### Linux #####################
Linux-BootLoader = superboot-6410.bin
Linux-Kernel = Linux/zImage
Linux-CommandLine = root=ubi0:FriendlyARM-root ubi.mtd=2 rootfstype=ubifs  init=/linuxrc console=ttySAC0,115200
Linux-RootFs-InstallImage = Linux/rootfs_qtopia_qt4-mlc2.ubi
Linux-RootFs-RunImage = Linux/rootfs_qtopia_qt4.ext3
</span>

原文链接http://blog.csdn.net/geng823/article/details/37045417

posted @ 2014-07-05 12:44  GengLUT  阅读(606)  评论(0编辑  收藏  举报