android的启动脚本(init.rc)文件的语法,参考资料:

Android 初始化语言(Android Init Language)

Android初始化脚本语言包含四种类型的语句:

动作(Actions)

指令(Commands)

服务(Services)

选项(Options)

该语言的语法包括下列约定:

所有类型的语句都是基于行(line-oriented)的,

一个语句包含若干个tokens,token之间通过空格字符分隔.

如果一个token中需要包含空格字符,则需要通过C语言风格的反斜线('\')来转义,或者使用双引号把整个token引起来。反斜线还可以出现在一行

的末尾,表示下一行的内容仍然属于当前语句。

以'#'开始的行是注释行。

动作(Actions)和服务(Services)语句隐含表示一个新的段落

(section)的开始。

所有的指令(commands)和选项(options)归属于上方最近的一个段落。在第一个段落之前的指令(commands)和选项

(options)是无效的。

动作(Actions)和服务(Services)拥有唯一性的名字。如果出现重

名,那么后出现的定义将被作为错误忽略掉。动作

(Actions)

动作(Actions)是一个有名字的指令(commands)序列。每个动作

(Actions)都定义一个触发条件(trigger),用于指示什么时候执行这个动作。当与动作的触发器匹配的事件发生时,该动作将被添加到一个即将

被执行的队列的队尾(除非它已经在队列中)。

队列中的每一个动作被依次取出执行,动作中的每一个指令也将依次执行。初始化程序

(Init)在执行一个动作的各项指令的期间,还需要处理其它操作(比如,设备创建/销毁,属性设置,进程重启)。

一个动作定义的形式如下:on

服务(Services)服务是初始化程序需要启动的一些程序,初始化程序还有可能会在这些程序退出之后重启它们。

Services take 一个服务定义的形式如下:service [ ]*

...

选项(Options)

选项将影响控制初始化程序运行服务的时机和方法。可能的选项如下表。

选项

说明

disabled

This service will not automatically

start with its class. It must be explicitly started by name.

socket[ [ ]

]

Create a unix domain socket named /dev/socket/

and pass its fd to the launched process. Valid

values include dgram and stream. user

and group default to 0.

user

Change to username before exec'ing

this service. Currently defaults to root.

group [

]*

Change to groupname before exec'ing

this service.  Additional  groupnames beyond the first, which is

required, are used to set additional groups of the process (with setgroups()).

Currently defaults to root.

capability [ ]+

Set linux capability before exec'ing

this service

oneshot

Do not restart the service when it

exits.

class

Specify a class name for the service.

All services in a named class must start and stop together. A service

is considered of class "default" if one is not specified via the class

option.

触发器(Triggers)

触发器是一个字符串,用于匹配特定的事件,这些事件将触发触发器所属动作

(Actions)的执行。

触发器

说明

boot

This is the first trigger that occurs

when init starts (after /init.conf is loaded).

=

Triggers of this form occur when the

property is set to the specific value .

device-added-device-removed-

Triggers of these forms occur when a

device node is added or removed.

service-exited-

Triggers of this form occur when the

specified service exits.

指令(Commands)

Command

Description

exec [

]*

Fork and execute a program ().

This will block until the program completes execution. Try to avoid

exec. Unlike the builtin commands, it runs the risk of

getting init "stuck".

export

Set the environment variable

equal to in the global environment (which

will be inherited by all processes started after this command is

executed).

ifup

Bring the network interface

online.

import

Parse an init config file, extending

the current configuration.

hostname

Set the host name.

class_start

Start all services of the specified

class if they are not already running.

class_stop

Stop all services of the specified

class if they are currently running.

domainname

Set the domain name.

insmod

Install the module at .

mkdir

Make a directory at .

mount [ ]*

Attempt to mount the named device at

the directory . This

may be of the form mtd@name to specify a mtd block device by name.

setkey

- currenlty undefined -

setprop

Set system property

to .

setrlimit

Set the rlimit for a resource.

start

Start a service running if it is not

already running.

stop

Stop a service from running if it is

currently running.

symlink

Create a symbolic link at

with the value .

write [ ]*

Open the file at

and write one or more strings to it with write(2).

属性(Properties)初始化程序(Init)可以根据需要修改一些系统的属性。

属性

说明

init.action

Equal to the name of the action

currently being executed or "" if none.

init.command

Equal to the command being executed or

"" if none.

init.svc.

State of a named service ("stopped",

"running", or "restarting").

init.rc文件示例on boot

export PATH /sbin:/system/sbin:/system/bin

export LD_LIBRARY_PATH /system/lib

mkdir /dev

mkdir /proc

mkdir /sys

mount tmpfs tmpfs /dev

mkdir /dev/pts

mkdir /dev/socket

mount devpts devpts /dev/pts

mount proc proc /proc

mount sysfs sysfs /sys

write /proc/cpu/alignment 4

ifup lo

hostname localhost

domainname localhost

mount yaffs2 mtd@system /system

mount yaffs2 mtd@userdata /data

import /system/etc/init.conf

class_start default

service adbd /sbin/adbd

user adb

group adb

service usbd /system/bin/usbd -r

user usbd

group usbd

socket usbd 666

service zygote /system/bin/app_process -Xzygote /system/bin --zygote

socket zygote 666

service runtime /system/bin/runtime

user system

group system

on device-added-/dev/compass

start akmd

on device-removed-/dev/compass

stop akmd

service akmd /sbin/akmd

disabled

user akmd

group akmd

android insmod命令,android的启动脚本(init.rc)文件的语法相关推荐

  1. Android的启动脚本–init.rc

    在 Android中使用启动脚本init.rc可以在系统的初始化过程中进行一些简单的初始化操作.这个脚本被直接安装到目标系统的根文件系统中,被 init可执行程序解析. init.rc是在init启动 ...

  2. Android程序暂停sh,init进程 解析Android启动脚本init.rc 修改它使不启动android init.rc中启动一个sh文件...

    Android启动后,系统执行的第一个进程是一个名称为init 的可执行程序.提供了以下的功能:设备管理.解析启动脚本.执行基本的功能.启动各种服务.代码的路径: system/core/init,编 ...

  3. Android启动脚本init.rc(2)

    在Android中使用启动脚本init.rc,可以在系统的初始化中进行简单的操作. init.rc启动脚本路径:system/core/rootdir/init.rc 内容: Commands:命令 ...

  4. Android系统init进程启动及init.rc全解析

    这是一篇用心写的博客,也希望大家用心看并帮忙找到文章的改进之处,谢谢: 服务启动机制 system/core/init/init.c文件main函数中parse_config_file(init.rc ...

  5. android启动过程之init.rc文件浅析

    1.  init.rc文件结构 文件位置: init.c  : /system/core/init init.rc  : /system/core/rootdir 首先init.rc文件是以模块为单位 ...

  6. Android源码之init.rc文件详解

    一.引言 .rc文件是 android系统一个十分重要的文件. 其是资源文件,包括比如对话框.菜单.图标.字符串等资源信息. 使用.rc资源文件的目的是为了对程序中用到的大量的资源进行统一的管理. 本 ...

  7. Android init.rc文件解析过程详解(三)

    Android init.rc文件解析过程详解(三) 三.相关结构体 1.listnode listnode结构体用于建立双向链表,这种结构广泛用于kernel代码中, android源代码中定义了l ...

  8. Android init.rc文件解析过程详解(一)

        Android init.rc文件解析过程详解(一) 一.init.rc文件结构介绍 init.rc文件基本组成单位是section, section分为三种类型,分别由三个关键字(所谓关键字 ...

  9. Android 8.0 学习(12)---init.rc语法及解析过程总结

    Android 8.0 init.rc语法及解析过程总结       Android O高通默认使用QMMI取代了fastmmi,但是由于QMMI是一个APK,属于Android应用层面,所以必须等到 ...

最新文章

  1. python使用localhost链接mysql出错及解决办法
  2. Uncaught TypeError: Object #Document has no method 'load'
  3. 机器学习-cs229-线性回归-泰勒展开法
  4. 遍历矩阵每一行穷举_[LeetCode] 566. 重塑矩阵
  5. 信息学奥赛一本通 1155:回文三位数
  6. c语言洗牌发牌结构体,C语言程序设计课程设计多功能计算器、洗牌发牌、学生文件处理、链表处理.doc...
  7. linux ssh应用
  8. ubuntu终端一次多条命令方法和区别
  9. java学生宿舍管理系统,来了就点个赞再走呗,即将毕业的兄弟有福了
  10. 基于微信小程序的考勤打卡系统
  11. SpringBoot搭建个人博客v1.0 - 博客管理功能实现(七)
  12. 技嘉主板设置服务器启动不了系统,技嘉主板开启ahci模式不认硬盘 - 卡饭网
  13. 拍卖程序员,100offer这样的程序员招聘方式靠谱吗
  14. 常用工具的配置和bash
  15. 比较常见的操作系统有哪些
  16. 【数据结构与算法】期末复习刷题日寄Part01
  17. Ubuntu下搭建第一台hadoop输入start-dfs.sh出现Permission denied (publickey,password)的问题
  18. 虚拟试穿VTNFP论文笔记
  19. Hive中数据倾斜和小文件过多的解决方案
  20. 光滑噪声数据常用的方法_如何处理噪声数据

热门文章

  1. SpringBoot入门到精通_第2篇 _1分钟实战需求项目
  2. VSFTPD 服务器 3秒钟搭建
  3. python3-pandas 数据结构 Series、DataFrame 基础
  4. Java-For循环
  5. Java中数组的打印
  6. linux输入qsub显示错误,linux – 使用qsub运行shellscript的’意外的文件结束’和’错误导入功能定义’错误...
  7. c语言变长参数 第一个参数必须吗,一种使用变长参数为C程序构造灵活回调函数的方法...
  8. c++ 字符串相等比较
  9. oracle 批量导出sequence,如何单独导出导入sequence?
  10. redhat配置oracle yum源,Redhat5和6 YUM源配置的区别