From 0381c6f40badba017a6ab20c0496f2b085b01c76 Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Tue, 26 Jun 2018 23:25:24 +0200 Subject: [PATCH] small adjustments after the lede -> openwrt re-rename. --- README.md | 12 ++++++------ build.sh | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 8819110..9d609b5 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # What -It's a script to build a customized [OpenWRT](https://openwrt.org/) -firmware image using a Linux x86_64 host (basic familiarity with -[OpenWRT](https://openwrt.org/) is assumed). +It's a script to build a customized OpenWRT firmware image on a Linux x86_64 host +(basic familiarity with [OpenWRT](https://wiki.openwrt.org/doc/howto/user.beginner) +is assumed). If the generated image is flashed on a device it will try to automatically set up [extroot](http://wiki.openwrt.org/doc/howto/extroot) on **any @@ -84,8 +84,8 @@ on a TP-Link WR-1043nd-v2. ## Which file should I flash? -You should consult the documentation at [OpenWRT](https://wiki.openwrt.org/doc/howto/user.beginner). -The produced firmware files should be somewhere around ```build/openwrt-imagebuilder-ar71xx-generic.Linux-x86_64/bin/ar71xx```. +You should consult the [OpenWRT documentation](https://wiki.openwrt.org/doc/howto/user.beginner). +The produced firmware files should be somewhere around ```build/openwrt-imagebuilder-17.01.4-ar71xx-generic.Linux-x86_64/bin/ar71xx```. In short: @@ -95,7 +95,7 @@ In short: * You must carefully pick the proper firmware file for your **hardware version**! I advise you to look up the wiki page for your hardware on the [OpenWRT wiki](https://wiki.openwrt.org), - because most of them have a table of the released hardawre versions with comments on their + because most of them have a table of the released hardware versions with comments on their status (sometimes new hardware revisions are only supported by the latest OpenWRT, which is not released yet). diff --git a/build.sh b/build.sh index 161812a..8222ee4 100755 --- a/build.sh +++ b/build.sh @@ -32,7 +32,7 @@ IMGBUILDER_NAME="lede-imagebuilder-${RELEASE}-${TARGET_ARCHITECTURE}-${TARGET_VA IMGBUILDER_DIR="${BUILD}/${IMGBUILDER_NAME}" IMGBUILDER_ARCHIVE="${IMGBUILDER_NAME}.tar.xz" -IMGTEMPDIR="${BUILD}/openwrt-build-image-extras" +IMGTEMPDIR="${BUILD}/image-extras" #https://downloads.lede-project.org/snapshots/targets/ar71xx/generic/lede-imagebuilder-ar71xx-generic.Linux-x86_64.tar.xz #https://downloads.lede-project.org/snapshots/targets/ar71xx/generic/lede-imagebuilder-ar71xx-generic.Linux-x86_64.tar.xz IMGBUILDERURL="https://downloads.openwrt.org/releases/${RELEASE}/targets/${TARGET_ARCHITECTURE}/${TARGET_VARIANT}/${IMGBUILDER_ARCHIVE}"