From: chengli3 Date: Tue, 26 May 2020 05:29:01 +0000 (+0000) Subject: Add jq and bash pkg for openwrt image X-Git-Tag: v1.0~32 X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=commitdiff_plain;h=4d2312c84bbf10877528ee4ea7d8fbe64c02920c;p=icn%2Fsdwan.git Add jq and bash pkg for openwrt image jq and bash pkg is used by openwrt entrypoint script. So we need to install these packages when building image. Signed-off-by: chengli3 Change-Id: I737d88b28189e000aae517276d42a506292dc316 --- diff --git a/platform/cnf/src/Dockerfile_1806_mwan3.tpl b/platform/cnf/src/Dockerfile_1806_mwan3.tpl index 52bf6ac..cb45337 100644 --- a/platform/cnf/src/Dockerfile_1806_mwan3.tpl +++ b/platform/cnf/src/Dockerfile_1806_mwan3.tpl @@ -10,7 +10,7 @@ RUN mkdir /var/lock && \ opkg install uhttpd-mod-lua && \ uci set uhttpd.main.interpreter='.lua=/usr/bin/lua' && \ uci commit uhttpd && \ - opkg install mwan3 && \ + opkg install mwan3 jq bash && \ opkg install luci-app-mwan3; exit 0 COPY system /etc/config/system diff --git a/platform/cnf/src/Dockerfile_1806_mwan3_noproxy.tpl b/platform/cnf/src/Dockerfile_1806_mwan3_noproxy.tpl index 0b0590e..d07e899 100644 --- a/platform/cnf/src/Dockerfile_1806_mwan3_noproxy.tpl +++ b/platform/cnf/src/Dockerfile_1806_mwan3_noproxy.tpl @@ -7,7 +7,7 @@ RUN mkdir /var/lock && \ opkg install uhttpd-mod-lua && \ uci set uhttpd.main.interpreter='.lua=/usr/bin/lua' && \ uci commit uhttpd && \ - opkg install mwan3 && \ + opkg install mwan3 jq bash && \ opkg install luci-app-mwan3; exit 0 COPY system /etc/config/system