使用mkbootfs制作ramdisk根文件系统
span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }.cm-searching {background: #ffa; background: rgba(255, 255, 0, .4);}.cm-force-border { padding-right: .1px; }@media print { .CodeMirror div.CodeMirror-cursors {visibility: hidden;}}.cm-tab-wrap-hack:after { content: ""; }span.CodeMirror-selectedtext { background: none; }.CodeMirror-activeline-background, .CodeMirror-selected {transition: visibility 0ms 100ms;}.CodeMirror-blur .CodeMirror-activeline-background, .CodeMirror-blur .CodeMirror-selected {visibility:hidden;}.CodeMirror-blur .CodeMirror-matchingbracket {color:inherit !important;outline:none !important;text-decoration:none !important;}.CodeMirror-sizer {min-height:auto !important;}
-->
li {list-style-type:decimal;}.wiz-editor-body ol.wiz-list-level2 > li {list-style-type:lower-latin;}.wiz-editor-body ol.wiz-list-level3 > li {list-style-type:lower-roman;}.wiz-editor-body blockquote {padding: 0 12px;}.wiz-editor-body blockquote > :first-child {margin-top:0;}.wiz-editor-body blockquote > :last-child {margin-bottom:0;}.wiz-editor-body img {border:0;max-width:100%;height:auto !important;margin:2px 0;}.wiz-editor-body table {border-collapse:collapse;border:1px solid #bbbbbb;}.wiz-editor-body td,.wiz-editor-body th {padding:4px 8px;border-collapse:collapse;border:1px solid #bbbbbb;min-height:28px;word-break:break-word;box-sizing: border-box;}.wiz-hide {display:none !important;}
-->
环境
概述
/* NOTES
**
** - see buffer-format.txt from the linux kernel docs for
** an explanation of this file format
** - dotfiles are ignored
** - directories named 'root' are ignored
** - device notes, pipes, etc are not supported (error)
*/
上面的信息说明了如下几点:
The full format of the initramfs buffer is defined by the following
grammar, where:
* is used to indicate "0 or more occurrences of"
(|) indicates alternatives
+ indicates concatenation
GZIP() indicates the gzip() of the operand
ALGN(n) means padding with null bytes to an n-byte boundary initramfs := ("\0" | cpio_archive | cpio_gzip_archive)* cpio_gzip_archive := GZIP(cpio_archive) cpio_archive := cpio_file* + (<nothing> | cpio_trailer) cpio_file := ALGN() + cpio_header + filename + "\0" + ALGN() + data cpio_trailer := ALGN() + cpio_header + "TRAILER!!!\0" + ALGN()
2. 名为"."的文件会被忽略,不会进行打包。
用法
lib_path=`readlink -f ./lib`
bin_path=`readlink -f ./bin/` export LD_LIBRARY_PATH=${lib_path}:$LD_LIBRARY_PATH
export PATH=${bin_path}:$PATH rm -f ramdisk.img ramdisk.cpio
rm -rf ./tmp/ # pack
pushd rootfs2
mkbootfs -f ../config.txt . | minigzip > ../ramdisk.img
mkbootfs -f ../config.txt . > ../ramdisk.cpio
popd # unpack
mkdir -p tmp
pushd tmp
cpio -i < ../ramdisk.cpio
popd
其中config.txt是一个配置文件,内容如下:
etc/init.d/rcS
第1行,把"etc/init.d/rcS"文件的uid设置为0,gid设置为0,权限设置为0755
/* Rules for directories.
** These rules are applied based on "first match", so they
** should start with the most specific path and work their
** way up to the root.
*/ static const struct fs_path_config android_dirs[] = {
{ , AID_SYSTEM, AID_CACHE, , "cache" },
{ , AID_ROOT, AID_ROOT, , "config" },
{ , AID_SYSTEM, AID_SYSTEM, , "data/app" },
{ , AID_SYSTEM, AID_SYSTEM, , "data/app-private" },
{ , AID_SYSTEM, AID_SYSTEM, , "data/app-ephemeral" },
{ , AID_ROOT, AID_ROOT, , "data/dalvik-cache" },
{ , AID_SYSTEM, AID_SYSTEM, , "data/data" },
{ , AID_SHELL, AID_SHELL, , "data/local/tmp" },
{ , AID_SHELL, AID_SHELL, , "data/local" },
{ , AID_SYSTEM, AID_MISC, , "data/misc" },
{ , AID_DHCP, AID_DHCP, , "data/misc/dhcp" },
{ , AID_SHARED_RELRO, AID_SHARED_RELRO, , "data/misc/shared_relro" },
{ , AID_MEDIA_RW, AID_MEDIA_RW, , "data/media" },
{ , AID_MEDIA_RW, AID_MEDIA_RW, , "data/media/Music" },
{ , AID_ROOT, AID_SHELL, , "data/nativetest" },
{ , AID_ROOT, AID_SHELL, , "data/nativetest64" },
... ...
针对其他文件的规则:
static const struct fs_path_config android_files[] = {
{ , AID_ROOT, AID_SHELL, , "system/etc/init.goldfish.rc" },
{ , AID_ROOT, AID_SHELL, , "system/etc/init.goldfish.sh" },
{ , AID_ROOT, AID_SHELL, , "system/etc/init.ril" },
{ , AID_ROOT, AID_ROOT, , "system/etc/ppp/*" },
{ , AID_ROOT, AID_ROOT, , "system/etc/rc.*" },
{ , AID_ROOT, AID_ROOT, , "system/etc/recovery.img" },
{ , AID_ROOT, AID_ROOT, , conf_dir + },
{ , AID_ROOT, AID_ROOT, , conf_file + },
{ , AID_SYSTEM, AID_SYSTEM, , "data/app/*" },
{ , AID_MEDIA_RW, AID_MEDIA_RW, , "data/media/*" },
{ , AID_SYSTEM, AID_SYSTEM, , "data/app-private/*" },
{ , AID_SYSTEM, AID_SYSTEM, , "data/app-ephemeral/*" },
{ , AID_APP, AID_APP, , "data/data/*" },
{ , AID_ROOT, AID_SHELL, , "data/nativetest/tests.txt" },
{ , AID_ROOT, AID_SHELL, , "data/nativetest64/tests.txt" },
... ...
验证
kernel_dir=./Linux-4.14.
kernel_image=${kernel_dir}/arch/arm/boot/zImage
dtb_image=${kernel_dir}/arch/arm/boot/dts/vexpress-v2p-ca9.dtb
qemu_path=/home/pengdonglin/disk_ext/Qemu/qemu-3.1./build/install/bin ${qemu_path}/qemu-system-arm \
-M vexpress-a9 \
-m 1024M \
-smp \
-kernel ${kernel_image} \
-nographic \
-append "root=/dev/ram0 rw rootfstype=ramfs console=ttyAMA0 init=/init ignore_loglevel" \
-initrd ./rootfs/ramdisk.img \
-dtb ${dtb_image}
[ 0.609270] Trying to unpack rootfs image as initramfs...
[ 0.965940] Freeing initrd memory: 3616K
kernel_dir=./Linux-4.14.
kernel_image=${kernel_dir}/arch/arm/boot/zImage
dtb_image=${kernel_dir}/arch/arm/boot/dts/vexpress-v2p-ca9.dtb
qemu_path=/home/pengdonglin/disk_ext/Qemu/qemu-3.1./build/install/bin ${qemu_path}/qemu-system-arm \
-M vexpress-a9 \
-m 1024M \
-smp \
-kernel ${kernel_image} \
-nographic \
-append "root=/dev/ram0 rw rootfstype=ramfs console=ttyAMA0 init=/init ignore_loglevel" \
-initrd ./rootfs/ramdisk.cpio \
-dtb ${dtb_image}
[ 0.610055] Trying to unpack rootfs image as initramfs...
[ 0.760468] Freeing initrd memory: 7040K
GEN usr/initramfs_data.cpio.gz
GZIP kernel/config_data.gz
CHK kernel/config_data.h
UPD kernel/config_data.h
CC kernel/configs.o
AR kernel/built-in.o
AS usr/initramfs_data.o
AR usr/built-in.o
/bin/bash ./scripts/gen_initramfs_list.sh -o usr/initramfs_data.cpio.gz -u -g /home/pengdonglin/disk_ext/Qemu/aarch32/rootfs/rootfs
kernel_dir=./Linux-4.14.
kernel_image=${kernel_dir}/arch/arm/boot/zImage
dtb_image=${kernel_dir}/arch/arm/boot/dts/vexpress-v2p-ca9.dtb
qemu_path=/home/pengdonglin/disk_ext/Qemu/qemu-3.1./build/install/bin ${qemu_path}/qemu-system-arm \
-M vexpress-a9 \
-m 1024M \
-smp \
-kernel ${kernel_image} \
-nographic \
-append "root=/dev/ram0 rw rootfstype=ramfs console=ttyAMA0 init=/init ignore_loglevel" \
-dtb ${dtb_image}
#!/bin/sh # Copyright Rob Landley <rob@landley.net> and TimeSys Corporation.
# Licensed under GPL version if [ $# -ne ]
then
echo "usage: mkinitramfs directory imagename.cpio.gz"
exit
fi if [ -d "$1" ]
then
echo "creating $2 from $1"
(cd "$1"; find . | cpio -o -H newc | gzip) > "$2"
else
echo "First argument must be a directory"
exit
fi
使用mkbootfs制作ramdisk根文件系统的更多相关文章
- Ramdisk根文件系统映像的修改与创建
本文简述Ramdisk根文件系统映像的修改以及创建,并附相关脚本以实现自动化配置,而根文件系统的制作过程请网上自行搜索.相关过程尽可能以图的方式展示出来,重在说明操作的过程,仅供参考. Ramdisk ...
- 使用BusyBox制作linux根文件系统(CramFS+mdev)
转:http://www.360doc.com/content/10/0428/11/496343_25245348.shtml 操作系统:Ubuntu9.04 内核版本:linux-2.6.24.7 ...
- 嵌入式linux内核制作、根文件系统制作
嵌入式系统构成: 主要由bootloader.kernel.以及根文件系统三部分组成. 内核制作步骤: 制作嵌入式平台使用的linux内核制作方法与pc平台上的linux内核基本一致 1.清除原有配置 ...
- 制作linux根文件系统
转载地址:http://wenku.baidu.com/view/2cb1b4707fd5360cba1adb14.html 2011十一月 24 转 嵌入式根文件系统制作 (3985) (0) 转自 ...
- 使用BusyBox制作Linux根文件系统
STEP 1:构建目录结构 创建根文件系统目录,主要包括以下目录/dev /etc /lib /usr /var /proc /tmp /home /root /mnt /bin /sbin ...
- 制作ramdisk-u.img根文件系统
具体步骤如下:1.解压内核源码树解压linux-2.6.29-mini2440-20090708.tgz到自己的工作目录,会生成一个友善之臂修改过的并且有几个mini2440默认配置文件的内核源码目录 ...
- 从ramdisk根文件系统启动Linux成功,及使用initramfs启动linux
下面两篇文章是ARM9论坛上的讲解ramdisk文件系统的很不错的文章 今天做了个试验,让Linux2.6.29.4从ramdisk根文件系统启动成功,总结一下. 其中涉及的内容较多,很多东西不再详述 ...
- 从ramdisk根文件系统启动Linux 二
今天做了个试验,让Linux2.6.29.4从ramdisk根文件系统启动成功,总结一下.其中涉及的内容较多,很多东西不再详述,如需深入研究请查阅相关资料(百度或谷歌一下一大堆). 开发环境:Fedo ...
- 从ramdisk根文件系统启动Linux成功
这几天参考国嵌的实验手册和网上的资料完成了u-boot定制.内核定制.ramdisk根文件系统的制作,并成功.趁热打铁,总结一下.本文引用了很多网络上的文章,就不一一注明了.感谢各大侠的帮助,如有雷同 ...
随机推荐
- postgresql 查询某一个表中的所有字段
select * from information_schema.columns where table_schema='public' and table_name='表名称 ';
- Codeforces 911F Tree Destruction
Tree Destruction 先把直径扣出来, 然后每个点都和直径的其中一端组合, 这样可以保证是最优的. #include<bits/stdc++.h> #define LL lon ...
- Python--os的常见方法
1.os.getcwd()+'/filename'------>相当于在当前运行文件的目录下创建一个以filename命名的文件 2.os.path.realpath(__file__)---- ...
- Codeforces 177G2 Fibonacci Strings KMP 矩阵
原文链接https://www.cnblogs.com/zhouzhendong/p/CF117G2.html 题目传送门 - CF177G2 题意 定义斐波那契字符串如下: $s_1="a ...
- BZOJ3796 Mushroom追妹纸 字符串 SA KMP
原文链接https://www.cnblogs.com/zhouzhendong/p/9253173.html 题目传送门 - BZOJ3796 题意 找一个串 $w$ 满足: 1.$w$ 是 $s_ ...
- 数仓1.1 分层| ODS& DWD层
数仓分层 ODS:Operation Data Store原始数据 DWD(数据清洗/DWI) data warehouse detail数据明细详情,去除空值,脏数据,超过极限范围的明细解析具体表 ...
- multiprocssing,threading,多进程多线程初识
1. multiprocessing 多进程: import multiprocessing p = multiprocessing.Process(target = func,name = &quo ...
- [译]the cost of javascript in 2018(1)
前言 为了构建交互性网站,我们需要发送js给我们的用户,但很多情况下,我们使用了太多js. 在移动端,经常看到只加载了个点击链接或者滚动不了的情况. 实话说,js仍然是移动端最昂贵的资源,因为其在很大 ...
- Java 浮点数精度丢失
Java 浮点数精度丢失 问题引入 昨天帮室友写一个模拟发红包抢红包的程序时,对金额统一使用的 double 来建模,结果发现在实际运行时程序的结果在数值上总是有细微的误差,程序运行的截图: 输入依次 ...
- asp.net core 依赖注入实现全过程粗略剖析(3)
接着 前面,前面的过程是普遍常用的依赖注入解析过程,我们正常都是在startup类中注入依赖服务,但是,笔者这周开发的时候遇到个问题,不同服务的生命周期不同,不能调用服务.举个例子,AddDbCont ...