Skip to content

Commit

Permalink
Mention that apk may be required if opkg is not found
Browse files Browse the repository at this point in the history
Experimental SNAPSHOT builds switched USE_APK to y recently.

Fixes: #317

Signed-off-by: rany <[email protected]>
  • Loading branch information
rany2 committed Nov 27, 2024
1 parent 7768de4 commit 495038f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ more about cake-autorate. This is the history of changes.

<!-- Zep7RkGZ52|NEW ENTRY MARKER, DO NOT REMOVE -->

## 2024-11-27 - Version 3.2.2

- This release updates the documentation to mention that the `apk`
command should be used to install dependencies if `opkg` is not
found.

## 2024-05-18 - Version 3.2.1

- This release fixes setup.sh on OpenWRT and some documentation
Expand Down
12 changes: 11 additions & 1 deletion INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,23 @@ required tools. To use it:

- [SSH into the router](https://openwrt.org/docs/guide-quick-start/sshadministration)

- Install bash and fping by running:
- Ensure `bash` and `fping` are installed.

On most OpenWrt installations, you can install them by running:

```bash
opkg update
opkg install bash fping
```

If the `opkg` command is not found, you may need to use `apk`
instead:

```bash
apk update
apk add bash fping
```

- Use the installer script by copying and pasting each of the commands
below. The commands retrieve the current version from this repo:

Expand Down

0 comments on commit 495038f

Please sign in to comment.