openwrt 将应用程序添加到固件并设置随系统自启动

1、将应用打包到openwrt固件

在openwrt_chaos_calmer_15.05目录下新建files目录/ 在该目录下添加需要编译到固件中的文件

zzq@osgi$ ls

felix-framework-4.2.0

 

2、在 openwrt/package/base-files/files/etc/init.d/下添加自启动脚本startfelix

openwrt_chaos_calmer_15.05/package/base-files/files/etc/init.d

[email protected]$ ls

boot done led startfelix sysctl sysfixtime system test umount

 

脚本内容:

openwrt 将应用程序添加到固件并设置随系统自启动_第1张图片

 

在start()中写入需要开机运行的程序命令,在stop()中写入终止程序的命令。START=50是指优先级,数字越大,优先级越低。一般优先级高的脚本会先运行。

编写好程序启动脚本后,需要给脚本赋予可执行权限。运行命令chmod+x startfelix。

 

build_dir - 一个临时目录,用来将所有需要编译的软件源码放到这个目录中进行编译.

build_dir/target-mips_34kc_uClibc-0.9.33.2/root-ar71xx/etc/init.d/目录下的启动脚本statfelix 来源于之前创建在 package 目录下init.d中;

make 过程中根据openwrt/package/base-files/files/etc/init.d/中的脚本自动创建 rc.d/目录下的连接

 

如上所述;固件安装后,系统启动时会按顺序自动运行/etc/rc.d/目录下的脚本链接,对应执行/etc/init.d/目录下的启动脚本进而启动相应程序。

 

 

 

你可能感兴趣的:(openwrt)