GitHub Pages repository for own OpenWrt binary packages feed.
[ -f /lib/libustream-ssl.so ] && echo "libustream already installed" || opkg install libustream-mbedtls
(! grep -q openlumi /etc/opkg/customfeeds.conf) && (
wget -q https://openlumi.github.io/openwrt-packages/public.key -O /tmp/public.key &&
opkg-key add /tmp/public.key && rm /tmp/public.key &&
echo 'src/gz openlumi https://openlumi.github.io/openwrt-packages/packages/19.07/arm_cortex-a9_neon' >> /etc/opkg/customfeeds.conf &&
echo "Feed added successfully!"
) || echo "Feed added already. Skip."
# then
opkg install [package-name]
#or for snapshot
echo 'src/gz openlumi https://openlumi.github.io/openwrt-packages/packages/snapshot/arm_cortex-a9_neon' >> /etc/opkg/customfeeds.conf
See LICENSE file.