Welcome to the fantastic-packages packages download page. Follow the links below to find the appropriate directory.
- Install fantastic-keyring and fantastic-packages-feeds
- OR install fantastic-feeds by @remittor
# you can install from shell or `Software` menu in LuCI
# for opkg
opkg install fantastic-keyring
opkg install fantastic-packages-feeds
# for apk
apk add --allow-untrusted fantastic-keyring
apk add --allow-untrusted fantastic-packages-feeds
Note: Please refer to this matrix for currently supported Version and Architecture. If your device is not listed, you can fork this repo and modify the matrix to add support for your device, then compile it with Github Action in your own repo. For details, please refer to ForkTheProject.md
- Append the following to the EOF
https://fantastic-packages.github.io/releases/<major.minor version>/packages/<package arch>/luci/packages.adb
https://fantastic-packages.github.io/releases/<major.minor version>/packages/<package arch>/packages/packages.adb
https://fantastic-packages.github.io/releases/<major.minor version>/packages/<package arch>/special/packages.adb
- like this
https://fantastic-packages.github.io/releases/SNAPSHOT/packages/x86_64/luci/packages.adb
https://fantastic-packages.github.io/releases/SNAPSHOT/packages/x86_64/packages/packages.adb
https://fantastic-packages.github.io/releases/SNAPSHOT/packages/x86_64/special/packages.adb
- Download
https://fantastic-packages.github.io/releases/<major.minor version>/<KEY-ID>.pub
- Put to
/etc/apk/keys/<KEY-ID>.pub
- Fast script
KEYID=<KEY-ID>
mkdir -p /etc/apk/keys 2>/dev/null
curl -sSL -o /etc/apk/keys/fantastic-packages-${KEYID}.pem "https://fantastic-packages.github.io/releases/<major.minor version>/${KEYID}.pub"
- OR
opkg update
opkg install curl bash
curl -sSL "https://fantastic-packages.github.io/releases/<major.minor version>/${KEYID}.sh" | bash
- Append the following to the EOF
src/gz fantastic_packages_luci https://fantastic-packages.github.io/releases/<major.minor version>/packages/<package arch>/luci
src/gz fantastic_packages_packages https://fantastic-packages.github.io/releases/<major.minor version>/packages/<package arch>/packages
src/gz fantastic_packages_special https://fantastic-packages.github.io/releases/<major.minor version>/packages/<package arch>/special
- like this
# add your custom package feeds here
#
# src/gz example_feed_name http://www.example.com/path/to/files
src/gz fantastic_packages_luci https://fantastic-packages.github.io/releases/21.02/packages/x86_64/luci
src/gz fantastic_packages_packages https://fantastic-packages.github.io/releases/21.02/packages/x86_64/packages
src/gz fantastic_packages_special https://fantastic-packages.github.io/releases/21.02/packages/x86_64/special
- Download
https://fantastic-packages.github.io/releases/<major.minor version>/<KEY-ID>.pub
- Put to
/etc/opkg/keys/<key-id>
, note filename must be lowercase - Fast script
KEYID=<KEY-ID>
mkdir -p /etc/opkg/keys 2>/dev/null
curl -sSL -o /etc/opkg/keys/${KEYID,,} "https://fantastic-packages.github.io/releases/<major.minor version>/${KEYID}.pub"
- OR
opkg update
opkg install curl bash
curl -sSL "https://fantastic-packages.github.io/releases/<major.minor version>/${KEYID}.sh" | bash