├── .github ├── actions │ └── setup-devenv │ │ └── action.yml └── workflows │ ├── NanoPi-Build.yml │ └── cleanup.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs └── resize-f2fs.md ├── local-scripts ├── build_r2s.sh ├── refresh_uboot.sh └── script_dir.sh ├── openwrt-23.05 ├── patches │ ├── package │ │ ├── adguardhome │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── adguardhome.config │ │ │ │ └── adguardhome.init │ │ ├── mbedtls │ │ │ └── patches │ │ │ │ └── 200-Implements-AES-and-GCM-with-ARMv8-Crypto-Extensions.patch │ │ └── uboot-rockchip │ │ │ ├── Makefile │ │ │ └── patches │ │ │ ├── 003-Revert-Makefile-Only-build-dtc-if-needed.patch │ │ │ ├── 004-no-kwbimage.patch │ │ │ ├── 005-fix-mkimage-host-build.patch │ │ │ ├── 201-rockchip-rk3328-Add-support-for-FriendlyARM-NanoPi-R.patch │ │ │ ├── 301-rockchip-dw_mmc-support-to-disable-HS-mode-for-SPL.patch │ │ │ ├── 302-arm64-dts-rk3399-nanopi4-Add-u-boot-spl-broken-hs.patch │ │ │ ├── 303-rockchip-rk3328-add-mmc-aliases-for-nanopi-r2s.patch │ │ │ ├── 304-mmc-dw_mmc-Fixes-timeout-issue-for-FIFO-mode.patch │ │ │ ├── 305-common-bouncebuf-Add-arch_addr_aligned-hook-for-rk33.patch │ │ │ ├── 306-arm64-rk3399-r4s-disable-nodes-for-vopb-vopl.patch │ │ │ ├── 307-configs-Add-CONFIG_SYS_MMC_ENV_DEV-1-for-nanopi-r4s.patch │ │ │ ├── 308-rockchip-rk3328-Implement-arch_addr_aligned-hook.patch │ │ │ ├── 309-ram-rk3399-Add-support-for-multiple-DDR-types-v2.patch │ │ │ └── 310-rockchip-rk3399-split-nanopi-r4s-out-of-evb_rk3399.patch │ ├── snd-usb-caiaq.makefileaddon │ └── target │ │ └── linux │ │ └── rockchip │ │ ├── image │ │ └── armv8.mk │ │ └── patches-5.15 │ │ ├── 005-rockchip-rk3328-add-compatible-to-NanoPi-R2S-etherne.patch │ │ ├── 100-rockchip-use-system-LED-for-OpenWrt.patch │ │ └── 103-arm64-rockchip-add-OF-node-for-eth.patch ├── release-info.md ├── seed │ ├── ao-R4S-full.seed │ ├── ao-R4S-full.seed.orig │ ├── ao-R4S-mini.seed │ └── ao-R4S-mini.seed.orig └── steps │ ├── 01_clone_openwrt.sh │ ├── 02_prepare_openwrt_folder.sh │ ├── 03_patch_openwrt.sh │ ├── 04-prepare_package.sh │ ├── 05-create_luci_acl.sh │ ├── 06-create_config_from_seed.sh │ ├── 07-all_kmods.sh │ ├── create_acl_for_luci.sh │ └── organize_files.sh ├── openwrt-24.10 ├── patches │ ├── package │ │ ├── adguardhome │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── adguardhome.config │ │ │ │ └── adguardhome.init │ │ ├── mbedtls │ │ │ └── patches │ │ │ │ └── 200-Implements-AES-and-GCM-with-ARMv8-Crypto-Extensions.patch │ │ └── uboot-rockchip │ │ │ ├── Makefile │ │ │ └── patches │ │ │ ├── 003-Revert-Makefile-Only-build-dtc-if-needed.patch │ │ │ ├── 004-no-kwbimage.patch │ │ │ ├── 005-fix-mkimage-host-build.patch │ │ │ ├── 201-rockchip-rk3328-Add-support-for-FriendlyARM-NanoPi-R.patch │ │ │ ├── 301-rockchip-dw_mmc-support-to-disable-HS-mode-for-SPL.patch │ │ │ ├── 302-arm64-dts-rk3399-nanopi4-Add-u-boot-spl-broken-hs.patch │ │ │ ├── 303-rockchip-rk3328-add-mmc-aliases-for-nanopi-r2s.patch │ │ │ ├── 304-mmc-dw_mmc-Fixes-timeout-issue-for-FIFO-mode.patch │ │ │ ├── 305-common-bouncebuf-Add-arch_addr_aligned-hook-for-rk33.patch │ │ │ ├── 306-arm64-rk3399-r4s-disable-nodes-for-vopb-vopl.patch │ │ │ ├── 307-configs-Add-CONFIG_SYS_MMC_ENV_DEV-1-for-nanopi-r4s.patch │ │ │ ├── 308-rockchip-rk3328-Implement-arch_addr_aligned-hook.patch │ │ │ ├── 309-ram-rk3399-Add-support-for-multiple-DDR-types-v2.patch │ │ │ └── 310-rockchip-rk3399-split-nanopi-r4s-out-of-evb_rk3399.patch │ ├── snd-usb-caiaq.makefileaddon │ └── target │ │ └── linux │ │ └── rockchip │ │ ├── image │ │ └── armv8.mk │ │ └── patches-6.6 │ │ ├── 101-rockchip-rk3328-add-compatible-to-NanoPi-R2S-etherne.patch │ │ ├── 103-arm64-dts-rockchip-lower-mmc-speed.patch │ │ ├── 402-1-rk3399-fix-pci-phy-reset-on-probe.patch │ │ ├── 501-mmc-core-set-initial-signal-voltage-on-power-off.patch │ │ └── 610-arm64-rockchip-add-OF-node-for-eth.patch ├── release-info.md ├── seed │ ├── ao-R4S-full.seed │ └── ao-R4S-mini.seed └── steps │ ├── 01_clone_openwrt.sh │ ├── 02_prepare_openwrt_folder.sh │ ├── 03_patch_openwrt.sh │ ├── 04-prepare_package.sh │ ├── 05-create_luci_acl.sh │ ├── 06-create_config_from_seed.sh │ ├── 07-all_kmods.sh │ ├── create_acl_for_luci.sh │ └── organize_files.sh └── workflow-scripts └── free_disk_space.sh /.github/actions/setup-devenv/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/.github/actions/setup-devenv/action.yml -------------------------------------------------------------------------------- /.github/workflows/NanoPi-Build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/.github/workflows/NanoPi-Build.yml -------------------------------------------------------------------------------- /.github/workflows/cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/.github/workflows/cleanup.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/README.md -------------------------------------------------------------------------------- /docs/resize-f2fs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/docs/resize-f2fs.md -------------------------------------------------------------------------------- /local-scripts/build_r2s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/local-scripts/build_r2s.sh -------------------------------------------------------------------------------- /local-scripts/refresh_uboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/local-scripts/refresh_uboot.sh -------------------------------------------------------------------------------- /local-scripts/script_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/local-scripts/script_dir.sh -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/adguardhome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/adguardhome/Makefile -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/adguardhome/files/adguardhome.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/adguardhome/files/adguardhome.config -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/adguardhome/files/adguardhome.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/adguardhome/files/adguardhome.init -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/mbedtls/patches/200-Implements-AES-and-GCM-with-ARMv8-Crypto-Extensions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/mbedtls/patches/200-Implements-AES-and-GCM-with-ARMv8-Crypto-Extensions.patch -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/uboot-rockchip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/uboot-rockchip/Makefile -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/uboot-rockchip/patches/003-Revert-Makefile-Only-build-dtc-if-needed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/uboot-rockchip/patches/003-Revert-Makefile-Only-build-dtc-if-needed.patch -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/uboot-rockchip/patches/004-no-kwbimage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/uboot-rockchip/patches/004-no-kwbimage.patch -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/uboot-rockchip/patches/005-fix-mkimage-host-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/uboot-rockchip/patches/005-fix-mkimage-host-build.patch -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/uboot-rockchip/patches/201-rockchip-rk3328-Add-support-for-FriendlyARM-NanoPi-R.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/uboot-rockchip/patches/201-rockchip-rk3328-Add-support-for-FriendlyARM-NanoPi-R.patch -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/uboot-rockchip/patches/301-rockchip-dw_mmc-support-to-disable-HS-mode-for-SPL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/uboot-rockchip/patches/301-rockchip-dw_mmc-support-to-disable-HS-mode-for-SPL.patch -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/uboot-rockchip/patches/302-arm64-dts-rk3399-nanopi4-Add-u-boot-spl-broken-hs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/uboot-rockchip/patches/302-arm64-dts-rk3399-nanopi4-Add-u-boot-spl-broken-hs.patch -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/uboot-rockchip/patches/303-rockchip-rk3328-add-mmc-aliases-for-nanopi-r2s.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/uboot-rockchip/patches/303-rockchip-rk3328-add-mmc-aliases-for-nanopi-r2s.patch -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/uboot-rockchip/patches/304-mmc-dw_mmc-Fixes-timeout-issue-for-FIFO-mode.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/uboot-rockchip/patches/304-mmc-dw_mmc-Fixes-timeout-issue-for-FIFO-mode.patch -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/uboot-rockchip/patches/305-common-bouncebuf-Add-arch_addr_aligned-hook-for-rk33.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/uboot-rockchip/patches/305-common-bouncebuf-Add-arch_addr_aligned-hook-for-rk33.patch -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/uboot-rockchip/patches/306-arm64-rk3399-r4s-disable-nodes-for-vopb-vopl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/uboot-rockchip/patches/306-arm64-rk3399-r4s-disable-nodes-for-vopb-vopl.patch -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/uboot-rockchip/patches/307-configs-Add-CONFIG_SYS_MMC_ENV_DEV-1-for-nanopi-r4s.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/uboot-rockchip/patches/307-configs-Add-CONFIG_SYS_MMC_ENV_DEV-1-for-nanopi-r4s.patch -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/uboot-rockchip/patches/308-rockchip-rk3328-Implement-arch_addr_aligned-hook.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/uboot-rockchip/patches/308-rockchip-rk3328-Implement-arch_addr_aligned-hook.patch -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/uboot-rockchip/patches/309-ram-rk3399-Add-support-for-multiple-DDR-types-v2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/uboot-rockchip/patches/309-ram-rk3399-Add-support-for-multiple-DDR-types-v2.patch -------------------------------------------------------------------------------- /openwrt-23.05/patches/package/uboot-rockchip/patches/310-rockchip-rk3399-split-nanopi-r4s-out-of-evb_rk3399.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/package/uboot-rockchip/patches/310-rockchip-rk3399-split-nanopi-r4s-out-of-evb_rk3399.patch -------------------------------------------------------------------------------- /openwrt-23.05/patches/snd-usb-caiaq.makefileaddon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/snd-usb-caiaq.makefileaddon -------------------------------------------------------------------------------- /openwrt-23.05/patches/target/linux/rockchip/image/armv8.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/target/linux/rockchip/image/armv8.mk -------------------------------------------------------------------------------- /openwrt-23.05/patches/target/linux/rockchip/patches-5.15/005-rockchip-rk3328-add-compatible-to-NanoPi-R2S-etherne.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/target/linux/rockchip/patches-5.15/005-rockchip-rk3328-add-compatible-to-NanoPi-R2S-etherne.patch -------------------------------------------------------------------------------- /openwrt-23.05/patches/target/linux/rockchip/patches-5.15/100-rockchip-use-system-LED-for-OpenWrt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/target/linux/rockchip/patches-5.15/100-rockchip-use-system-LED-for-OpenWrt.patch -------------------------------------------------------------------------------- /openwrt-23.05/patches/target/linux/rockchip/patches-5.15/103-arm64-rockchip-add-OF-node-for-eth.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/patches/target/linux/rockchip/patches-5.15/103-arm64-rockchip-add-OF-node-for-eth.patch -------------------------------------------------------------------------------- /openwrt-23.05/release-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/release-info.md -------------------------------------------------------------------------------- /openwrt-23.05/seed/ao-R4S-full.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/seed/ao-R4S-full.seed -------------------------------------------------------------------------------- /openwrt-23.05/seed/ao-R4S-full.seed.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/seed/ao-R4S-full.seed.orig -------------------------------------------------------------------------------- /openwrt-23.05/seed/ao-R4S-mini.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/seed/ao-R4S-mini.seed -------------------------------------------------------------------------------- /openwrt-23.05/seed/ao-R4S-mini.seed.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/seed/ao-R4S-mini.seed.orig -------------------------------------------------------------------------------- /openwrt-23.05/steps/01_clone_openwrt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/steps/01_clone_openwrt.sh -------------------------------------------------------------------------------- /openwrt-23.05/steps/02_prepare_openwrt_folder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/steps/02_prepare_openwrt_folder.sh -------------------------------------------------------------------------------- /openwrt-23.05/steps/03_patch_openwrt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/steps/03_patch_openwrt.sh -------------------------------------------------------------------------------- /openwrt-23.05/steps/04-prepare_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/steps/04-prepare_package.sh -------------------------------------------------------------------------------- /openwrt-23.05/steps/05-create_luci_acl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/steps/05-create_luci_acl.sh -------------------------------------------------------------------------------- /openwrt-23.05/steps/06-create_config_from_seed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/steps/06-create_config_from_seed.sh -------------------------------------------------------------------------------- /openwrt-23.05/steps/07-all_kmods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/steps/07-all_kmods.sh -------------------------------------------------------------------------------- /openwrt-23.05/steps/create_acl_for_luci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/steps/create_acl_for_luci.sh -------------------------------------------------------------------------------- /openwrt-23.05/steps/organize_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-23.05/steps/organize_files.sh -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/adguardhome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/adguardhome/Makefile -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/adguardhome/files/adguardhome.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/adguardhome/files/adguardhome.config -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/adguardhome/files/adguardhome.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/adguardhome/files/adguardhome.init -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/mbedtls/patches/200-Implements-AES-and-GCM-with-ARMv8-Crypto-Extensions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/mbedtls/patches/200-Implements-AES-and-GCM-with-ARMv8-Crypto-Extensions.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/uboot-rockchip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/uboot-rockchip/Makefile -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/uboot-rockchip/patches/003-Revert-Makefile-Only-build-dtc-if-needed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/uboot-rockchip/patches/003-Revert-Makefile-Only-build-dtc-if-needed.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/uboot-rockchip/patches/004-no-kwbimage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/uboot-rockchip/patches/004-no-kwbimage.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/uboot-rockchip/patches/005-fix-mkimage-host-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/uboot-rockchip/patches/005-fix-mkimage-host-build.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/uboot-rockchip/patches/201-rockchip-rk3328-Add-support-for-FriendlyARM-NanoPi-R.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/uboot-rockchip/patches/201-rockchip-rk3328-Add-support-for-FriendlyARM-NanoPi-R.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/uboot-rockchip/patches/301-rockchip-dw_mmc-support-to-disable-HS-mode-for-SPL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/uboot-rockchip/patches/301-rockchip-dw_mmc-support-to-disable-HS-mode-for-SPL.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/uboot-rockchip/patches/302-arm64-dts-rk3399-nanopi4-Add-u-boot-spl-broken-hs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/uboot-rockchip/patches/302-arm64-dts-rk3399-nanopi4-Add-u-boot-spl-broken-hs.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/uboot-rockchip/patches/303-rockchip-rk3328-add-mmc-aliases-for-nanopi-r2s.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/uboot-rockchip/patches/303-rockchip-rk3328-add-mmc-aliases-for-nanopi-r2s.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/uboot-rockchip/patches/304-mmc-dw_mmc-Fixes-timeout-issue-for-FIFO-mode.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/uboot-rockchip/patches/304-mmc-dw_mmc-Fixes-timeout-issue-for-FIFO-mode.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/uboot-rockchip/patches/305-common-bouncebuf-Add-arch_addr_aligned-hook-for-rk33.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/uboot-rockchip/patches/305-common-bouncebuf-Add-arch_addr_aligned-hook-for-rk33.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/uboot-rockchip/patches/306-arm64-rk3399-r4s-disable-nodes-for-vopb-vopl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/uboot-rockchip/patches/306-arm64-rk3399-r4s-disable-nodes-for-vopb-vopl.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/uboot-rockchip/patches/307-configs-Add-CONFIG_SYS_MMC_ENV_DEV-1-for-nanopi-r4s.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/uboot-rockchip/patches/307-configs-Add-CONFIG_SYS_MMC_ENV_DEV-1-for-nanopi-r4s.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/uboot-rockchip/patches/308-rockchip-rk3328-Implement-arch_addr_aligned-hook.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/uboot-rockchip/patches/308-rockchip-rk3328-Implement-arch_addr_aligned-hook.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/uboot-rockchip/patches/309-ram-rk3399-Add-support-for-multiple-DDR-types-v2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/uboot-rockchip/patches/309-ram-rk3399-Add-support-for-multiple-DDR-types-v2.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/package/uboot-rockchip/patches/310-rockchip-rk3399-split-nanopi-r4s-out-of-evb_rk3399.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/package/uboot-rockchip/patches/310-rockchip-rk3399-split-nanopi-r4s-out-of-evb_rk3399.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/snd-usb-caiaq.makefileaddon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/snd-usb-caiaq.makefileaddon -------------------------------------------------------------------------------- /openwrt-24.10/patches/target/linux/rockchip/image/armv8.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/target/linux/rockchip/image/armv8.mk -------------------------------------------------------------------------------- /openwrt-24.10/patches/target/linux/rockchip/patches-6.6/101-rockchip-rk3328-add-compatible-to-NanoPi-R2S-etherne.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/target/linux/rockchip/patches-6.6/101-rockchip-rk3328-add-compatible-to-NanoPi-R2S-etherne.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/target/linux/rockchip/patches-6.6/103-arm64-dts-rockchip-lower-mmc-speed.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/target/linux/rockchip/patches-6.6/103-arm64-dts-rockchip-lower-mmc-speed.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/target/linux/rockchip/patches-6.6/402-1-rk3399-fix-pci-phy-reset-on-probe.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/target/linux/rockchip/patches-6.6/402-1-rk3399-fix-pci-phy-reset-on-probe.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/target/linux/rockchip/patches-6.6/501-mmc-core-set-initial-signal-voltage-on-power-off.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/target/linux/rockchip/patches-6.6/501-mmc-core-set-initial-signal-voltage-on-power-off.patch -------------------------------------------------------------------------------- /openwrt-24.10/patches/target/linux/rockchip/patches-6.6/610-arm64-rockchip-add-OF-node-for-eth.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/patches/target/linux/rockchip/patches-6.6/610-arm64-rockchip-add-OF-node-for-eth.patch -------------------------------------------------------------------------------- /openwrt-24.10/release-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/release-info.md -------------------------------------------------------------------------------- /openwrt-24.10/seed/ao-R4S-full.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/seed/ao-R4S-full.seed -------------------------------------------------------------------------------- /openwrt-24.10/seed/ao-R4S-mini.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/seed/ao-R4S-mini.seed -------------------------------------------------------------------------------- /openwrt-24.10/steps/01_clone_openwrt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/steps/01_clone_openwrt.sh -------------------------------------------------------------------------------- /openwrt-24.10/steps/02_prepare_openwrt_folder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/steps/02_prepare_openwrt_folder.sh -------------------------------------------------------------------------------- /openwrt-24.10/steps/03_patch_openwrt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/steps/03_patch_openwrt.sh -------------------------------------------------------------------------------- /openwrt-24.10/steps/04-prepare_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/steps/04-prepare_package.sh -------------------------------------------------------------------------------- /openwrt-24.10/steps/05-create_luci_acl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/steps/05-create_luci_acl.sh -------------------------------------------------------------------------------- /openwrt-24.10/steps/06-create_config_from_seed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/steps/06-create_config_from_seed.sh -------------------------------------------------------------------------------- /openwrt-24.10/steps/07-all_kmods.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/steps/07-all_kmods.sh -------------------------------------------------------------------------------- /openwrt-24.10/steps/create_acl_for_luci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/steps/create_acl_for_luci.sh -------------------------------------------------------------------------------- /openwrt-24.10/steps/organize_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/openwrt-24.10/steps/organize_files.sh -------------------------------------------------------------------------------- /workflow-scripts/free_disk_space.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anaelorlinski/OpenWrt-NanoPi-R2S-R4S-Builds/HEAD/workflow-scripts/free_disk_space.sh --------------------------------------------------------------------------------