1、我要修改的内核代码在 /openwrt/build_dir/target-i386_pentium4_musl/linux-x86_generic/linux-4.14.37/ 下面
2、编辑好代码后,采用diff -urN fw_iptables.c.backup fw_iptables.c > 1.patch 生成patch文件,其中backup是原始文件的副本,*.c是自己修改的
4、安装
make ./target/linux/clean V=s
make ./target/linux/install
5、编出的内核在/bin/targets/x86/generic下面
编译程序的命令
1. package/***/compile -j1 V=s
package/**/install
编译ipk包
1、make menuconfig里面找到对应项,选M?(对应项通过make自己写的程序,里面makefile写了)
2、make package/***/compile
3、package/index位置可能在bin/packages/***/base/下面
4 opkg install安装
1. 在/etc/init.d/中按照以下格式编写shell脚本
1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/bin/sh /etc/rc.common START=99 STOP=15 start() { echo start #commands to launch application, such as above } stop() { echo stop #commands to kill application } |
2. 使用chmod命令将脚本变为可执行脚本:chmod +x xxx
3. 为脚本文件创建一个软链接,软链接存放于/etc/rc.d/下, 命名为S95+脚本名。