开发环境搭建 (一) OK6410A 开发环境 1官方环境
程序员文章站
2022-07-05 21:38:33
u-boot 与 启动模式u-boot(版本 U-Boot 1.1.6,u-boot.bin,4062204 bytes)u-boot镜像在nand(device 0 offset 0x500000, size 0x500000)中,设置启动模式为nand 启动环境变量bootargs 为 root=/dev/mtdblock2 rootfstype=yaffs2 init=/linuxrc console=ttySAC0,115200bootcmd 为 nand read.i ....
从nand中 的 u-boot(1.1.6) 启动
u-boot load nand 中的kernel(3.0.1),然后kernel 启动
kernel 挂载 nand 中的第三个分区(被格式化为yaff2)为根文件系统,并执行 /linuxrc
/linuxrc 作为 进程1 启动
- u-boot 与 启动模式
u-boot(版本 U-Boot 1.1.6,u-boot.bin,4062204 bytes)
u-boot镜像在nand(device 0 offset 0x500000, size 0x500000)中,
设置启动模式为nand 启动
环境变量
bootargs 为 root=/dev/mtdblock2 rootfstype=yaffs2 init=/linuxrc console=ttySAC0,115200
bootcmd 为 nand read.i 0xc0008000 0x500000 0x500000;bootm 0xc0008000
baudrate 为 115200
- kernel
kernel(linux-3.0.1,zImage,4062204 bytes)
kernel 镜像 在 nand(device 0 offset 0x500000, size 0x500000)中,
无 initrd ,无 dts 支持
- rootfs
rootfs(rootfs.yaffs2,yaffs2格式,133545984 bytes)
rootfs 在 nand(device 0 offset 0x1e00000, size 0x7f5c000)中
rootfs 中 图形支持为 QT
本文地址:https://blog.csdn.net/u011011827/article/details/108729835
上一篇: Spring 学习(八):AOP异常通知和环绕通知
下一篇: Appium创建一个Note的实例