first commit

This commit is contained in:
jeka
2023-12-09 14:42:54 +05:00
parent 9466633fb0
commit b7cdc29448
9 changed files with 32 additions and 192 deletions

32
configs/archer-c6-v3 Normal file
View File

@@ -0,0 +1,32 @@
#!/bin/sh
# Archer C7 v2 configuration for openwrt-image-buildomatic
# Running OpenWRT image builder 18.06 on Ubuntu 20.04 requires at least:
# sudo apt install python2 libncurses5-dev
#RELEASE=${RELEASE_18_06}
#RELEASE=${RELEASE_19_07}
#RELEASE=${RELEASE_21_02}
RELEASE=${RELEASE_23_05}
if [ -z "${RELEASE}" ]; then echo "RELEASE is empty"; return 1; fi
# See targets here: https://downloads.openwrt.org/snapshots/targets
#
# device can be built with one of two TARGETs:
# ar71xx/generic is usable for releases 17.01, 18.06, 19.07
# ath79/generic is usable for releases 19.07, 21.02
if echo "${RELEASE}" | grep -q "18.06"; then
TARGET=ramips/mt7621
PROFILE="tplink_archer-c6-v3"
else
TARGET=ramips/mt7621
PROFILE="tplink_archer-c6-v3"
fi
# This package list works for releases 18.06, 19.07 and 21.02
PACKAGES="luci"
FILES="archer-c6-v3-files"
DISABLED_SERVICES=""