博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
genimage.cfg.template hacking
阅读量:6604 次
发布时间:2019-06-24

本文共 1379 字,大约阅读时间需要 4 分钟。

#*********************************************************************************#*                     genimage.cfg.template hacking#* 说明:#*     分析i.MX6 genimage.cfg.template模板配置原理。#*#*                                              2018-1-23 深圳 宝安西乡 曾剑锋#********************************************************************************/# 一、参考文档:#    1. Genimage - The Image Creation Tool#        https://github.com/pengutronix/genimage# Minimal SD card image for the Freescale boards Template## We mimic the .sdcard Freescale's image format:# * the SD card must have 1 kB free space at the beginning,# * U-Boot is dumped as is,# * a FAT partition at offset 8 MB is containing zImage/uImage and DTB files# * a single root filesystem partition is required (ext2, ext3 or ext4)## boot分区,vfat格式image boot.vfat {  vfat {    files = {      %FILES%   # 需要拷贝的文件名称    }  }  size = 16M    # 分区大小}image sdcard.img {  hdimage {  }  # 直接拷贝的u-boot文件  partition u-boot {    in-partition-table = "no"   # Boolean specifying whether to include this partition in the partition table.    image = "u-boot.imx"    offset = 1024  }  # 指定分区类型,引用前面定义的boot.vfat分区  partition boot {    partition-type = 0xC    bootable = "true"    image = "boot.vfat"    offset = 8M  }  # 文件系统分区  partition rootfs {    partition-type = 0x83    image = "rootfs.ext2"  }}

 

转载于:https://www.cnblogs.com/zengjfgit/p/8335069.html

你可能感兴趣的文章
使用OpenGrok搭建 可搜索可跳转的源码 阅读网站
查看>>
HTML5开发中的javascript闭包
查看>>
Android ContentProvider调用报错"Bad call:..."及相关Binder权限问题分析
查看>>
ionic3 教程(二)登录页制作
查看>>
Python正则表达式初识(四)
查看>>
不明恶意攻击致<搜狗搜索><搜索结果>跳转<百度搜索>技术原理分析
查看>>
不务正业的前端之SSO(单点登录)实践
查看>>
配置通过VLANIF实现跨设备VLAN内通信
查看>>
一站式计费解决方案——腾讯计费首次亮相昆明
查看>>
Linux-正则表达式
查看>>
文字转语音转换的方法有哪些?
查看>>
linux系统电视盒子到底是什么
查看>>
MySQL的root用户密码忘了 , 该怎么办?
查看>>
一次性可以导入多少首歌曲到NoteBurner Spotify Music Converter中?
查看>>
基本shell脚本的编辑及变量
查看>>
$ORACLE_HOME/bin/oracle执行文件
查看>>
免密码登陆
查看>>
加密和解密 tar
查看>>
我的友情链接
查看>>
[李景山php]每天TP5-20161216|thinkphp5-helper.php-1
查看>>