zoukankan      html  css  js  c++  java
  • android操作系统在itop4412开发板上的烧写

    ITOP4412启动模式:

    1.EMMC启动模式:拨码开关1-3为011
    2.SD卡启动模式:拨码开关1-3为100
    uboot:初始化内存控制器,访问存储器,把操作系统内核从存储器读取出来放到内存中,使CPU运行操作系统内核,对应u-boot-iTOP-4412.bin文件。
    Linux内核:底层驱动,Linux工程师工作,对应zImage文件。
    android应用:ramdisk-uboot:启动Android各种服务脚本,对应ramdisk-uboot.img文件。
    system:Android文件系统,比较大,下载耗时,对应system.img文件。
    硬件平台:1.4412开发板和核心板;2.串口线;3.OTG线。
    软件平台:1.win8.1操作系统;2.fastboot烧写工具;3.OTG驱动;4.串口终端Hyper Terminal。
    fastboot烧写android系统步骤:
    1.拷贝android镜像到fastboot文件夹中;
    2.打开超级终端,波特率115200;
    3.启动开发板,串口进入倒计时,输入任意字符,进入uboot模式;
    4.格式化EMMC并创建分区:1)分区:fdisk -c 0,2)格式化fat文件系统:fatformat mmc 0:1,3)格式化android镜像文件:ext3format mmc 0:2,
    4)格式化data和cache文件:ext3format mmc 0:3,5)格式化临时文件:ext3format mmc 0:4。
    5.连接开发板和PC机的USB_fastboot_tool工具,串口输入命令 fastboot
    6.打开fastboot中的cmd.exe输入:1)fastboot.exe flash bootloader u-boot-iTOP-4412.bin;2)fastboot.exe flash kernel zImage;3)fastboot.exe flash ramdisk ramdisk-uboot.img;4)fastboot.exe flash system system.img;5)fastboot -w;6)fastboot reboot

  • 相关阅读:
    li排序
    appendChild的用法
    单选框和下拉框的jquery操作
    Dom操作高级应用
    DOM操作应用
    自己写的sql排序
    odoo10学习笔记七:国际化、报表
    odoo10学习笔记六:工作流、安全机制、向导
    odoo10学习笔记五:高级视图
    odoo10学习笔记四:onchange、唯一性约束
  • 原文地址:https://www.cnblogs.com/huipengbo/p/6359022.html
Copyright © 2011-2022 走看看