From 24ccd9dc42d161502b46a37c4088f5d194ec2468 Mon Sep 17 00:00:00 2001 From: Lee Miller Date: Tue, 24 Jan 2023 18:06:05 +0200 Subject: [PATCH 1/3] Add some packages --- .buildbot/openwrt/build.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.buildbot/openwrt/build.sh b/.buildbot/openwrt/build.sh index cb1d86e..e7f9f57 100755 --- a/.buildbot/openwrt/build.sh +++ b/.buildbot/openwrt/build.sh @@ -47,6 +47,7 @@ make image \ alsa-lib pciutils usbutils \ kmod-usb-net-qmi-wwan libqmi qmi-utils uqmi luci-proto-qmi \ shadow-usermod \ + adguardhome \ asterisk \ asterisk-app-sms asterisk-pjsip asterisk-bridge-simple \ asterisk-codec-alaw asterisk-codec-ulaw \ @@ -69,6 +70,10 @@ make image \ collectd-mod-thermal collectd-mod-uptime \ collectd-mod-users collectd-mod-vmem \ collectd-mod-wireless \ + curl etherwake fail2ban \ + luci-app-mwan3 luci-app-upnp \ + python3-yaml \ + wireguard-tools wget-ssl \ " ls -lah packages -- 2.45.1 From 765d5c372e9617a025d6a09f3c5543aea5ad1ae4 Mon Sep 17 00:00:00 2001 From: Lee Miller Date: Tue, 24 Jan 2023 22:08:42 +0200 Subject: [PATCH 2/3] https-dns-proxy for DoH with dnsmasq together with corresponding LuCI app --- .buildbot/openwrt/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildbot/openwrt/build.sh b/.buildbot/openwrt/build.sh index e7f9f57..c90c66e 100755 --- a/.buildbot/openwrt/build.sh +++ b/.buildbot/openwrt/build.sh @@ -71,7 +71,7 @@ make image \ collectd-mod-users collectd-mod-vmem \ collectd-mod-wireless \ curl etherwake fail2ban \ - luci-app-mwan3 luci-app-upnp \ + luci-app-https-dns-proxy luci-app-mwan3 luci-app-upnp \ python3-yaml \ wireguard-tools wget-ssl \ " -- 2.45.1 From 4aaf2cd35eda93d0731c6fc5145541207daf4f9a Mon Sep 17 00:00:00 2001 From: Lee Miller Date: Wed, 25 Jan 2023 02:09:11 +0200 Subject: [PATCH 3/3] Double rootfs partition size, make manifest --- .buildbot/openwrt/build.sh | 75 ++++++++++++++++++++------------------ 1 file changed, 39 insertions(+), 36 deletions(-) diff --git a/.buildbot/openwrt/build.sh b/.buildbot/openwrt/build.sh index c90c66e..b665a9d 100755 --- a/.buildbot/openwrt/build.sh +++ b/.buildbot/openwrt/build.sh @@ -40,43 +40,46 @@ cp ${sdkdir}/bin/packages/aarch64_cortex-a72/quectel/*.ipk packages/ make info -make image \ - PROFILE=rpi-4 \ - PACKAGES="kmod-nf-nathelper-extra kmod-rtc-ds1307 \ - kmod-usb-audio kmod-usb-net-rtl8152 \ - alsa-lib pciutils usbutils \ - kmod-usb-net-qmi-wwan libqmi qmi-utils uqmi luci-proto-qmi \ - shadow-usermod \ - adguardhome \ - asterisk \ - asterisk-app-sms asterisk-pjsip asterisk-bridge-simple \ - asterisk-codec-alaw asterisk-codec-ulaw \ - asterisk-res-rtp-asterisk \ - asterisk-chan-quectel \ - collectd collectd-mod-contextswitch collectd-mod-cpu \ - collectd-mod-curl \ - collectd-mod-dhcpleases collectd-mod-disk \ - collectd-mod-dns collectd-mod-entropy \ - collectd-mod-ethstat collectd-mod-exec \ - collectd-mod-filecount collectd-mod-fscache \ - collectd-mod-interface collectd-mod-ipstatistics \ - collectd-mod-iptables collectd-mod-irq \ - collectd-mod-iwinfo collectd-mod-load \ - collectd-mod-memory collectd-mod-network \ - collectd-mod-nginx collectd-mod-ping \ - collectd-mod-processes collectd-mod-protocols \ - collectd-mod-sensors collectd-mod-smart \ - collectd-mod-sqm collectd-mod-tcpconns \ - collectd-mod-thermal collectd-mod-uptime \ - collectd-mod-users collectd-mod-vmem \ - collectd-mod-wireless \ - curl etherwake fail2ban \ - luci-app-https-dns-proxy luci-app-mwan3 luci-app-upnp \ - python3-yaml \ - wireguard-tools wget-ssl \ - " +# Double the size of the root partition +echo "CONFIG_TARGET_ROOTFS_PARTSIZE=208" >> .config -ls -lah packages +PACKAGES="kmod-nf-nathelper-extra kmod-rtc-ds1307 \ + kmod-usb-audio kmod-usb-net-rtl8152 \ + alsa-lib pciutils usbutils \ + kmod-usb-net-qmi-wwan libqmi qmi-utils uqmi luci-proto-qmi \ + shadow-usermod \ + adguardhome \ + asterisk \ + asterisk-app-sms asterisk-pjsip asterisk-bridge-simple \ + asterisk-codec-alaw asterisk-codec-ulaw \ + asterisk-res-rtp-asterisk \ + asterisk-chan-quectel \ + collectd collectd-mod-contextswitch collectd-mod-cpu \ + collectd-mod-curl \ + collectd-mod-dhcpleases collectd-mod-disk \ + collectd-mod-dns collectd-mod-entropy \ + collectd-mod-ethstat collectd-mod-exec \ + collectd-mod-filecount collectd-mod-fscache \ + collectd-mod-interface collectd-mod-ipstatistics \ + collectd-mod-iptables collectd-mod-irq \ + collectd-mod-iwinfo collectd-mod-load \ + collectd-mod-memory collectd-mod-network \ + collectd-mod-nginx collectd-mod-ping \ + collectd-mod-processes collectd-mod-protocols \ + collectd-mod-sensors collectd-mod-smart \ + collectd-mod-sqm collectd-mod-tcpconns \ + collectd-mod-thermal collectd-mod-uptime \ + collectd-mod-users collectd-mod-vmem \ + collectd-mod-wireless \ + curl etherwake fail2ban \ + luci-app-https-dns-proxy luci-app-mwan3 luci-app-upnp \ + python3-yaml \ + wireguard-tools wget-ssl \ + " + +make image PROFILE=rpi-4 PACKAGES="${PACKAGES}" + +make manifest PROFILE=rpi-4 PACKAGES="${PACKAGES}" out=../../out -- 2.45.1