Ophub Op Save Abandoned

OpenWrt for Linksys-WRT1900ACS, Linksys-WRT3200ACM, Linksys-WRT32X, X86-64, NanoPi-R4S, NanoPi-R2S, OrangePi_Zero, Raspberry_Pi3, Raspberry_Pi4 & Amlogic s9xxx tv box.

Project README

OpenWrt Firmware

The latest version of the OpenWrt firmware can be downloaded in Releases. For detailed information about each firmware, please refer to the README.md file of each model. The currently supported router models are:

Compilation method

  • Select Build OpenWrt for ${router} on the Action page.
  • Click the Run workflow button.

There are currently two DIY scripts in the root directory of the warehouse: diy-part1.sh, diy-part2.sh and .config, which are executed before and after the update and installation of ./scripts/feeds update && ./scripts/feeds install. You can write the instructions for modifying the source code into the script, such as modifying the default IP , Host name, theme, add/remove software package..., etc. If the additional software package has the same name as the existing software package in the OpenWrt source code, the software package with the same name in the OpenWrt source code needs to be deleted, otherwise the packages in OpenWrt will be compiled first. It will automatically traverse all files in the package directory when compiling.

Just put the feeds.conf.default file into the root directory of the warehouse, it will overwrite the relevant files in the OpenWrt source directory. Create a new files directory under the root directory of the warehouse, and put the customized related files in the same directory structure as OpenWrt, and the OpenWrt configuration will be overwritten during compilation.

Folder/file name Features
.config Firmware related configuration, such as firmware kernel, file type, software package, luci-app, luci-theme, etc.
files Create a files directory under the root directory of the warehouse and put the relevant files in. You can use custom files such as network/dhcp/wireless by default when compiling.
feeds.conf.default Just put the feeds.conf.default file into the root directory of the warehouse, it will overwrite the relevant files in the OpenWrt source directory.
diy-part1.sh Execute before updating and installing feeds, you can write instructions for modifying the source code into the script, such as adding/modifying/deleting feeds.conf.default.
diy-part2.sh After updating and installing feeds, you can write the instructions for modifying the source code into the script, such as modifying the default IP, host name, theme, adding/removing software packages, etc.
Environment variable Features
REPO_URL Source code warehouse address
REPO_BRANCH Source branch
FEEDS_CONF Custom feeds.conf.default file name
CONFIG_FILE Custom .config file name
DIY_P1_SH Custom diy-part1.sh file name
DIY_P2_SH Custom diy-part2.sh file name
UPLOAD_BIN_DIR Upload the bin directory (all ipk files and firmware). Default false
UPLOAD_FIRMWARE Upload firmware catalog. Default true
UPLOAD_RELEASE Upload firmware to release. Default true
UPLOAD_COWTRANSFER Upload the firmware to CowTransfer.com. Default false
UPLOAD_WERANSFER Upload the firmware to WeTransfer.com. Default failure
RECENT_LASTEST maximum retention days for release, artifacts and logs in GitHub Release and Actions.
TZ Time zone setting
GITHUB_REPOSITORY Github.com Environment variables. The owner and repository name. For example, ophub/op.
secrets.GITHUB_TOKEN Personal center: Settings → Developer settings → Personal access tokens → Generate new token ( Name: GITHUB_TOKEN, Select: public_repo ).

Firmware information

Name Value
Default IP 192.168.1.1
Default username root
Default password password
Default WIFI name OpenWrt
Default WIFI password none

Catalog description


 op
 ├── .github
 │   └── workflows
 │       ├── build-openwrt-s9xxx.yml                   # Build Amlogic S9xxx firmware
 │       ├── build-openwrt-armvirt.yml                 # Build Armvirt firmware
 │       ├── build-openwrt-linksys_wrt1900acs.yml      # Build Linksys WRT1900ACS firmware
 │       ├── build-openwrt-linksys_wrt3200acm.yml      # Build Linksys WRT3200ACM firmware
 │       ├── build-openwrt-linksys_wrt32x.yml          # Build Linksys WRT32X firmware
 │       ├── build-openwrt-nanopi_r2s.yml              # Build NanoPi-R2S firmware
 │       ├── build-openwrt-nanopi_r4s.yml              # Build NanoPi-R4S firmware
 │       ├── build-openwrt-orangepi-zero.yml           # Build OrangePi Zero firmware
 │       ├── build-openwrt-raspberry_pi-3.yml          # Build Raspberry Pi-3 firmware
 │       ├── build-openwrt-raspberry_pi-4.yml          # Build Raspberry Pi-4 firmware
 │       ├── build-openwrt-x86_64.yml                  # Build x86_64 firmware
 │       └── delete-older-releases-artifacts.yml       # Delete older releases & artifacts
 │
 ├── router                                            # Related router Openwrt firmware codes
 │   ├── amlogic_s9xxx                                 # Amlogic S9xxx STB related code files
 │   │   ├── .config
 │   │   ├── diy-part1.sh
 │   │   ├── diy-part2.sh
 │   │   └── README.md
 │   │
 │   ├── armvirt_64                                    # Armvirt 64 related code files
 │   │   ├── .config
 │   │   ├── diy-part1.sh
 │   │   ├── diy-part2.sh
 │   │   └── README.md
 │   │
 │   ├── linksys_wrt1900acs                            # Linksys WRT1900ACS related code files
 │   │   ├── .config                                   # config luci-app, luci-theme and other
 │   │   ├── diy-part1.sh                              # DIY script part 1(Before Update feeds)
 │   │   ├── diy-part2.sh                              # DIY script part 2(After Update feeds)
 │   │   └── README.md                                 # Instructions
 │   │
 │   ├── linksys_wrt3200acm                            # Linksys WRT3200ACM related code files
 │   │   ├── .config
 │   │   ├── diy-part1.sh
 │   │   ├── diy-part2.sh
 │   │   └── README.md
 │   │
 │   ├── linksys_wrt32x                                # Linksys WRT32X related code files
 │   │   ├── .config
 │   │   ├── diy-part1.sh
 │   │   ├── diy-part2.sh
 │   │   └── README.md
 │   │
 │   ├── nanopi_r2s                                    # NanoPi R2S related code files
 │   │   ├── .config
 │   │   ├── diy-part1.sh
 │   │   ├── diy-part2.sh
 │   │   └── README.md
 │   │
 │   ├── nanopi_r4s                                    # NanoPi R4S related code files
 │   │   ├── .config
 │   │   ├── diy-part1.sh
 │   │   ├── diy-part2.sh
 │   │   └── README.md
 │   │
 │   ├── orangepi_zero                                 # OrangePi Zero related code files
 │   │   ├── .config
 │   │   ├── diy-part1.sh
 │   │   ├── diy-part2.sh
 │   │   └── README.md
 │   │
 │   ├── raspberry_pi3                                 # Raspberry Pi-3 related code files
 │   │   ├── .config
 │   │   ├── diy-part1.sh
 │   │   ├── diy-part2.sh
 │   │   └── README.md
 │   │
 │   ├── raspberry_pi4                                 # Raspberry Pi-4 related code files
 │   │   ├── .config
 │   │   ├── diy-part1.sh
 │   │   ├── diy-part2.sh
 │   │   └── README.md
 │   │
 │   └── x86_64                                        # x86_64 related code files
 │       ├── .config
 │       ├── diy-part1.sh
 │       ├── diy-part2.sh
 │       └── README.md
 │
 ├── LICENSE                                           # LICENSE for OP
 └── README.md                                         # README for OP

Acknowledgments

License

The op © OPHUB is licensed under GPL-2.0

Open Source Agenda is not affiliated with "Ophub Op" Project. README Source: ophub/op

Open Source Agenda Badge

Open Source Agenda Rating