当前位置: 首页 > 工具软件 > Opkg > 使用案例 >

openwrt 模块编译与opkg应用

颛孙正谊
2023-12-01

模块编译

openwrt 编译一般都是make V=s,编译整个固件。如果需要编译某个模块的话可以使用

make package/xxx/clean
make package/xxx/compile
make package/xxx/install


(XXX代表你的模块)。这样既方便又省时间。
编译luci-app应用

如果是luci应用,单独编译:

make package/feeds/luci/luci-app-xxx/clean
make package/feeds/luci/luci-app-xxx/compile
make package/install
make target/install


使用浏览器观察无变化时,请确定是否已清除浏览器缓存。
 

opkg应用

开发板安装pack

opkg install helloworld_1_ramips_24kec.ipk

查看已安装pack

opkg list_installed

删除pack

opkg remove helloworld_1_ramips_24kec.ipk

 类似资料: