From 69e73319ec8faf2601580b0d556a06d776a27f53 Mon Sep 17 00:00:00 2001 From: Lee Miller Date: Tue, 31 Jan 2023 22:07:18 +0200 Subject: [PATCH 1/2] Try to install CherryPy with python3-packages --- .buildbot/openwrt/build.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.buildbot/openwrt/build.sh b/.buildbot/openwrt/build.sh index dcce31e..101cafa 100755 --- a/.buildbot/openwrt/build.sh +++ b/.buildbot/openwrt/build.sh @@ -23,7 +23,10 @@ cat ${pwd}/feeds.conf >> feeds.conf ./scripts/feeds install -a make defconfig +echo 'CONFIG_PACKAGE_python3-packages=y' >> .config +echo 'CONFIG_PACKAGE_python3-packages-list="CherryPy==18.8.0"' >> .config +make package/python3-packages/compile make package/asterisk-chan-quectel/compile # no signing key make package/index @@ -75,7 +78,7 @@ PACKAGES="kmod-nf-nathelper-extra kmod-rtc-ds1307 \ curl etherwake fail2ban \ luci-app-https-dns-proxy luci-app-mwan3 luci-app-upnp \ luci-ssl-nginx luci-app-acme \ - python3-yaml \ + python3-packages python3-yaml \ wireguard-tools wget-ssl \ " -- 2.45.1 From 79f18da3a5db7b35de8e5f1544bc577ae2223f05 Mon Sep 17 00:00:00 2001 From: Lee Miller Date: Thu, 2 Feb 2023 07:16:52 +0200 Subject: [PATCH 2/2] Copy ipk from packages overlay --- .buildbot/openwrt/build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.buildbot/openwrt/build.sh b/.buildbot/openwrt/build.sh index 101cafa..f6a15cf 100755 --- a/.buildbot/openwrt/build.sh +++ b/.buildbot/openwrt/build.sh @@ -38,6 +38,7 @@ tar -xJf /Downloads/openwrt-imagebuilder-${OPENWRT_VERSION}-*.tar.xz cd openwrt-imagebuilder-*/ cp ${sdkdir}/bin/targets/bcm27xx/bcm2711/packages/*.ipk packages/ +cp ${sdkdir}/bin/packages/aarch64_cortex-a72/packages/*.ipk packages/ cp ${sdkdir}/bin/packages/aarch64_cortex-a72/telephony/*.ipk packages/ cp ${sdkdir}/bin/packages/aarch64_cortex-a72/quectel/*.ipk packages/ -- 2.45.1