Last active
March 31, 2020 16:26
-
-
Save mdPlusPlus/fbf609de44b2de2159be647b8c20b535 to your computer and use it in GitHub Desktop.
OpenWRT imagebulder commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Dependencies: | |
# apt-get install build-essential libncurses5-dev libncursesw5-dev zlib1g-dev gawk git gettext libssl-dev xsltproc wget unzip python | |
# Files: | |
# update.sh wg_mullvad_ip.sh wg-watchdog.sh | |
# x86_64 | |
# Snapshot: | |
# - https://downloads.openwrt.org/snapshots/targets/x86/64/openwrt-imagebuilder-x86-64.Linux-x86_64.tar.xz | |
# 18.06.4: | |
# - https://downloads.openwrt.org/releases/18.06.4/targets/x86/64/openwrt-imagebuilder-18.06.4-x86-64.Linux-x86_64.tar.xz | |
make image \ | |
PROFILE="Generic" \ | |
PACKAGES="\\ | |
ca-bundle \\ | |
curl \\ | |
diffutils \\ | |
dnsmasq-full \\ | |
git \\ | |
luci-app-ddns \\ | |
luci-app-openvpn \\ | |
luci-app-sqm \\ | |
luci-app-wireguard \\ | |
luci-ssl-openssl \\ | |
nano \\ | |
netperf \\ | |
openvpn-openssl \\ | |
wget \\ | |
wireguard-tools \\ | |
" \ | |
FILES=../files/ | |
# TP-Link Archer C7 v5 | |
# Snapshot: | |
# - https://downloads.openwrt.org/snapshots/targets/ath79/generic/openwrt-imagebuilder-ath79-generic.Linux-x86_64.tar.xz | |
# Additional stuff: | |
# - update.sh (opkg update && opkg list-upgradable | cut -d ' ' -f 1 | xargs -r opkg upgrade) | |
# - wg-watchdog.sh | |
# - wg_mullvad_ip.sh | |
# - https://github.com/richb-hanover/OpenWrtScripts | |
# - https://github.com/sivel/speedtest-cli | |
# - python3 | |
# - python3-asyncio | |
# - python3-base | |
# - python3-codecs | |
# - python3-ctypes | |
# - python3-dbm | |
# - python3-decimal | |
# - python3-distutils | |
# - python3-email | |
# - python3-gdbm | |
# - python3-light | |
# - python3-logging | |
# - python3-lzma | |
# - python3-multiprocessing | |
# - python3-ncurses | |
# - python3-openssl | |
# - python3-pydoc | |
# - python3-sqlite3 | |
# - python3-unittest | |
# - python3-xml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment