I.MX6 working note for high efficiency
/****************************************************************************
* I.MX6 working note for high efficiency
*
* 主要是将在I.MX6 Android工作中的用到的特殊需求用法的记录,并对boot.img
* 分解、合成进行了说明,另外增加了一个shell脚本自动完成boot.img合成与拷贝。
*
* 深圳 南山平山村 晴 2015/05/13 周三 曾剑锋
***************************************************************************/ \\\\\\\\\\\-*- 目录 -*-///////////
| 一. 获取目录的读写权限:
| 二. vi编辑器:
| 三. 查看网络方法:
| 四. 配置网络方法:
| 五. dhcp的配置方法:
| 六. boot.img pack unpack:
| 七. system.img pack unpack:
\\\\\\\\\\\\\\\\\\\////////////// 一. 获取目录的读写权限:
. 嵌入式重新挂根目录
mount -o rw -o remount /dev/block/actb /
. 嵌入式重新挂载/system
mount -o remount /dev/block/mtdblock2 /system
3. Ubuntu脚本挂载
echo "aplex" | sudo -S mount -t ext4 system.img yaffs
4. Ubuntu脚本卸载
echo "aplex" | sudo umount yaffs
二. vi编辑器:
busybox vi 三. 查看网络方法:
. netcfg
. busybox ifconfig 四. 配置网络方法:
. ifconfig eth0 192.168.1.1
. busybox ifconfig eth0 192.168.1.1/ 五. dhcp的配置方法:
. netcfg eth0 up
. netcfg eth0 dhcp 六. boot.img pack unpack:
. 下载工具:[TOOL] Boot.img tools [unpack, repack, ramdisk]
http://forum.xda-developers.com/showthread.php?t=2319018
. 看1中网站对工具的描述说明、使用说明
. 封装一个repack工具:
cat repack << EOF
#!/bin/sh echo "begin to repacking boot.img" KERNEL=boot/boot.img-kernel
RAMDISK=boot/new-ramdisk.cpio.gz
PAGESIZE=
BASE=0x10800000
RAMDISKADDR=0x11800000
CMDLINE="console=ttymxc0,115200 init=/init video=mxcfb0:dev=ldb,bpp=32 video=mxcfb1:off video=mxcfb2:off fbmem=10M fb0base=0x27b00000 vmalloc=400M androidboot.console=ttymxc0 androidboot.hardware=freescale" out=${out:-"/home/myzr/myandroid/out/target/product/sabresd_6dq"}
# 检查必要的文件或者文件夹
if [ ! -f $RAMDISK ] ; then
echo " \nCan't find the boot/new-ramdisk.cpio.gz file.\n "
exit
fi if [ ! -f $KERNEL ] ; then
echo " \nCan't find the boot/boot.img-kernel file.\n "
exit
fi if [ ! -d boot/ramdisk ] ; then
echo " \nCan't find the boot/ramdisk directory.\n "
exit
fi ./repack_ramdisk boot/ramdisk ./mkbootimg --kernel $KERNEL --ramdisk $RAMDISK --pagesize $PAGESIZE --base $BASE --ramdiskaddr $RAMDISKADDR --cmdline "$CMDLINE" -o newboot.img echo "repacking boot.img over EOF
. 如果我们是使用虚拟机和Windows,协同工作,何不让让shell脚本帮我们再多做点事,
编译内核时,合成boot.img,并拷贝boot.img到固定的目录Windows制定目录下去:
cat remake.sh << EOF
#!/bin/sh make uImage out=${out:-"/home/myzr/myandroid/out/target/product/sabresd_6dq"}
if [ ! -d $out/bootimgTools/boot/ ]; then
mkdir $out/bootimgTools/boot -p
echo "mkdir $out/bootimgTools/boot "
fi
echo "cp arch/arm/boot/zImage $out/bootimgTools/boot/boot.img-kernel"
cp arch/arm/boot/zImage $out/bootimgTools/boot/boot.img-kernel #repack boot.img file
cd $out/bootimgTools #跳到工具所在的目录
./repack #执行上3中封装的合成脚本
echo "boot.img repacked over." #共享目录下的目录路径,本人的共享目录是PC机的桌面
WIN_PATH="MY-I.MX6DL-MFG-TOOL-V2.5/MY-I.MX6DL-MFG-TOOL-V2.5/Profiles/MX6DL Linux Update/OS Firmware/files/android" cp newboot.img "${win}/${WIN_PATH}/boot.img"
echo "move over. :)" EOF 七. system.img pack unpack:
. shell命令:file system.img
输出结果:system.img: Linux rev 1.0 ext4 filesystem data, UUID=57f8f4bc-abf4-655f-bf67-946fc0f9f25b (extents) (large files)
由上面的结果分析可知,我们只需要挂载system.img,然后就可以直接修改其中的内容了,很幸运而已:
sudo mount -t ext4 system.img <目标路径>
. 可以考虑做同样的事,写个脚本,让电脑代劳拷贝之类的工作
I.MX6 working note for high efficiency的更多相关文章
- ROS_Kinetic_x ROS栅格地图庫 Grid Map Library
源自:https://github.com/ethz-asl/grid_map Grid Map Overview This is a C++ library with ROS interface t ...
- CRC 详解
http://www.barrgroup.com/Embedded-Systems/How-To/Additive-Checksums CRC Series, Part 1: Additive Che ...
- SLVA299A : Load Disconnect ( Input to Output Isolation ) for the TPS61040
http://www.ti.com/lit/an/slva299a/slva299a.pdf Many boost converters have an external rectifier diod ...
- [源码解析] 模型并行分布式训练 Megatron (4) --- 如何设置各种并行
[源码解析] 模型并行分布式训练 Megatron (4) --- 如何设置各种并行 目录 [源码解析] 模型并行分布式训练 Megatron (4) --- 如何设置各种并行 0x00 摘要 0x0 ...
- Design and Analysis of Algorithms_Fundamentals of the Analysis of Algorithm Efficiency
I collect and make up this pseudocode from the book: <<Introduction to the Design and Analysis ...
- I.MX6 Ethernet UI patch failed
/*********************************************************************** * I.MX6 Ethernet UI patch f ...
- I.MX6 Android U-blox miniPCI 4G porting
/************************************************************************** * I.MX6 Android U-blox m ...
- I.MX6 Goodix GT9xx touchscreen driver porting
/************************************************************************ * I.MX6 Goodix GT9xx touch ...
- I.MX6 Android 移除 Settings wifi功能
/********************************************************************* * I.MX6 Android 移除 Settings w ...
随机推荐
- shell 循环总结
#!/bin/bash my_arry=(a b "c","d" abc) echo "-------FOR循环遍历输出数组--------" ...
- Spring AMQP 源码分析 07 - MessageListenerAdapter
### 准备 ## 目标 了解 Spring AMQP 如何用 POJO 处理消息 ## 前置知识 <Spring AMQP 源码分析 04 - MessageListener> ## 相 ...
- 简明Docker教程
Docker基础 这篇基础文章是方便用户在使用cSphere平台之前,了解docker基础知识. 针对已经有一定的Linux基础知识的用户. Docker是什么 Docker是一个改进的容器技术.具体 ...
- java.lang.NoSuchMethodError问题处理
出现这个问题一般是jar包冲突了,我找了很久没找到是哪个jar冲突了.最后用下面的这段代码,找到是哪个jar冲突了 /** * find jar file */ String LOCATION = & ...
- php 获取自己的公网IP
<?php $externalContent = file_get_contents('http://checkip.dyndns.com/'); preg_match('/Current IP ...
- Confluence 6 教程:在 Confluence 中导航
当你对 Confluence 有所了解后,你会发现 Confluence 使用起来非常简单.这个教程主要是针对你使用的 Confluence 界面进行一些说明,同时向你展示在那里可以进行一些通用的任务 ...
- Confluence 6 导入 Active Directory 服务器证书 - UNIX
为了让你的应用服务器能够信任你的目录服务器.你目录服务器上导出的证书需要导入到你应用服务器的 Java 运行环境中.JDK 存储了信任的证书,这个存储信任证书的文件称为一个 keystore.默认的 ...
- mxnet(gluon) 实现DQN简单小例子
参考文献 莫凡系列课程视频 增强学习入门之Q-Learning 关于增强学习的基本知识可以参考第二个链接,讲的挺有意思的.DQN的东西可以看第一个链接相关视频.课程中实现了Tensorflow和pyt ...
- 快速排序的C++版
int Partition(int a[], int low, int high) { int x = a[high];//将输入数组的最后一个数作为主元,用它来对数组进行划分 int i = low ...
- C++中的this指针
1.关于this指针的一个精典回答: 当你进入一个房子后,你可以看见桌子.椅子.地板等,但是房子你是看不到全貌了.对于一个类的实例来说,你可以看到它的成员函数.成员变量,但是实例本身呢?this是一个 ...