zoukankan      html  css  js  c++  java
  • 第五章 心得体会

    通过第五章的学习,学会了开发板测试环境的调试和烧写android系统。

    学到的知识:

    一、安装串口调试工具:minicom

    第1步:检测当前系统是否支持USB转串口。

    # lsmod | grep usbserial

    第2步:安装minicom

    # qpt-get install minicom

    第3步:配置minicom

    # minicom -s

    第4步:测试minicom

    # minicom

    二、烧写Android系统

    1使用Eboot擦除NandFlash

    第1步:准备工作

    用串口线或USB转串口线连接开发板和PC,并启动minicom。

    第2步:进入Eboot状态

    打开开发板的电源开关,按PC键盘的空格键使开发板停留在Eboot状态。

    第3步:擦除NandFlash

    进入Eboot状态,输入“A”擦除NandFlash。

    2烧写Android

    第1步:准备工作

    准备一个2GB或者4GB的SD卡。

    第2步:向SD卡写入mmc.bin和zImage-sd.bin

    第3步:烧写Adnroid前的准备工作

    将android_fs.tar、mmc.bin和zImage文件复制到SD卡,设置开发板上的启动开关。

    第4步:开始从SD卡烧写Android

    第5步:校准屏幕

    # rm /data/pointercal

    三、配置有线网络

    1修改开发板IP

    # ifconfig eth0 192.168.17.150 netmask

     

    255.255.255.0 up

    # route add defauit gw 192.168.17.254 dev eth0

    2查询开发板IP

    # /system/busybox/sbin/ifconfig

    # /system/busybox/sbin/route

  • 相关阅读:
    POJ2993——Emag eht htiw Em Pleh(字符串处理+排序)
    POJ2109——Power of Cryptography
    POJ2993——Help Me with the Game(字符串处理+排序)
    POJ1573——Robot Motion
    POJ2632——Crashing Robots
    POJ1068——Parencodings
    POJ3295——Tautology
    POJ2506——Tiling
    POJ2524——Ubiquitous Religions
    性能问题“三板斧”
  • 原文地址:https://www.cnblogs.com/chen-yang/p/5558814.html
Copyright © 2011-2022 走看看