From 725caf29194e72e84203275bac6ed8ea0aabed12 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Sun, 14 Feb 2021 10:05:55 +0100 Subject: [PATCH] update to 19.07.6 --- README.md | 3 ++- build.sh | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f730f5c..f660b0a 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,8 @@ i.e. they will only run when the extroot has failed to mount early in the boot. OpenWRT's ImageBuilder only works on Linux x86_64. To build a firmware, issue the following command: `./build.sh architecture variant device-profile`, e.g.: -* `./build.sh ar71xx generic tl-wr1043nd-v2` +* `./build.sh ar71xx generic tplink_tl-wr1043nd-v1` +* `./build.sh ath79 generic tplink_archer-c6-v2` Results will be under `build/openwrt-imagebuilder-${release}-${architecture}-${variant}.Linux-x86_64/bin/`. diff --git a/build.sh b/build.sh index 9c2444f..bc41365 100755 --- a/build.sh +++ b/build.sh @@ -12,7 +12,7 @@ BUILD=`readlink -f $BUILD` ### ### chose a release ### -RELEASE="19.07.4" +RELEASE="19.07.6" IMGBUILDER_NAME="openwrt-imagebuilder-${RELEASE}-${TARGET_ARCHITECTURE}-${TARGET_VARIANT}.Linux-x86_64" IMGBUILDER_DIR="${BUILD}/${IMGBUILDER_NAME}" @@ -26,8 +26,8 @@ IMGBUILDERURL="https://downloads.openwrt.org/releases/${RELEASE}/targets/${TARGE if [ -z ${TARGET_DEVICE} ]; then echo "Usage: $0 architecture variant device-profile" - echo " e.g.: $0 ar71xx generic tl-wr1043nd-v2" - echo " $0 ramips mt7621 zbt-wg3526" + echo " e.g.: $0 ar71xx generic tplink_tl-wr1043nd-v1" + echo " $0 ath79 generic tplink_archer-c6-v2" echo " $0 bcm53xx generic dlink-dir-885l" echo " (this last one will not work without editing build.sh, details: https://github.com/attila-lendvai/openwrt-auto-extroot/pull/15#issuecomment-405847440)" echo " to get a list of supported devices issue a 'make info' in the OpenWRT image builder directory:"