├── .github └── workflows │ ├── Build-All.yml │ ├── N1-ImmortalWrt-18.06-K5.4.yml │ ├── N1-ImmortalWrt-24.10.yml │ ├── N1-LEDE.yml │ ├── N1-OpenWrt-24.10.yml │ └── N1-iStoreOS.yml ├── .gitignore ├── README.md ├── config ├── immortalwrt-18.06-k5.4 │ └── config.seed ├── immortalwrt-24.10 │ └── config.seed ├── istoreos │ └── config.seed ├── lede │ └── config.seed └── openwrt-24.10 │ └── config.seed ├── doc ├── readme.md ├── release.md ├── sing-box-subscribe.md ├── sing-box.md ├── sing-box_new.md └── stream.md ├── files ├── bridge │ └── etc │ │ └── sysctl.conf ├── cpufreq │ └── etc │ │ └── config │ │ └── cpufreq ├── init │ ├── etc │ │ └── shinit │ └── root │ │ └── .vimrc └── local_feeds.sh ├── img └── phicomm-n1.jpg ├── patch ├── cgroupfs-mount │ ├── 0001-fix-cgroupfs-mount.patch │ ├── 900-mount-cgroup-v2-hierarchy-to-sys-fs-cgroup-cgroup2.patch │ ├── 901-fix-cgroupfs-umount.patch │ └── 902-mount-sys-fs-cgroup-systemd-for-docker-systemd-suppo.patch ├── curl │ └── downgrade_curl_8.6.0_to_8.5.0.patch ├── custom_install │ ├── istoreos │ │ └── custom_target_amlogic_scripts.patch │ └── lede │ │ └── custom_target_amlogic_scripts.patch ├── default-settings │ ├── immortalwrt-18.06 │ │ └── zzz-default-settings │ ├── immortalwrt-24.10 │ │ └── zzz-default-settings │ ├── istoreos │ │ └── zzz-default-settings │ ├── lede │ │ └── zzz-default-settings │ └── openwrt-24.10 │ │ └── zzz-default-settings ├── firewall │ ├── 04-luci-add-firewall4-nft-rules-file.patch │ └── 100-openwrt-firewall4-add-custom-nft-command-support.patch └── sing-box │ ├── jq │ ├── install.sh │ ├── iptables │ │ ├── china_ip4.txt │ │ ├── firewall_post.rules │ │ └── sing-box.init │ ├── nftables │ │ ├── china_ip4.txt │ │ ├── firewall_post.rules │ │ └── sing-box.init │ └── shared │ │ ├── generate_config.sh │ │ └── sing-box.conf │ └── ucode │ ├── install.sh │ ├── iptables │ ├── china_ip4.txt │ ├── firewall_post.ut │ └── sing-box.init │ ├── nftables │ ├── china_ip4.txt │ ├── firewall_post.ut │ └── sing-box.init │ └── shared │ ├── generate_config.uc │ ├── sing-box.conf │ └── stream.json └── scripts ├── functions.sh ├── immortalwrt-18.06-k5.4 ├── 01_prepare_source_code.sh └── 02_prepare_package.sh ├── immortalwrt-24.10 ├── 01_prepare_source_code.sh └── 02_prepare_package.sh ├── istoreos ├── 01_prepare_source_code.sh └── 02_prepare_package.sh ├── lede ├── 01_prepare_source_code.sh └── 02_prepare_package.sh └── openwrt-24.10 ├── 01_prepare_source_code.sh └── 02_prepare_package.sh /.github/workflows/Build-All.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/.github/workflows/Build-All.yml -------------------------------------------------------------------------------- /.github/workflows/N1-ImmortalWrt-18.06-K5.4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/.github/workflows/N1-ImmortalWrt-18.06-K5.4.yml -------------------------------------------------------------------------------- /.github/workflows/N1-ImmortalWrt-24.10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/.github/workflows/N1-ImmortalWrt-24.10.yml -------------------------------------------------------------------------------- /.github/workflows/N1-LEDE.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/.github/workflows/N1-LEDE.yml -------------------------------------------------------------------------------- /.github/workflows/N1-OpenWrt-24.10.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/.github/workflows/N1-OpenWrt-24.10.yml -------------------------------------------------------------------------------- /.github/workflows/N1-iStoreOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/.github/workflows/N1-iStoreOS.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/README.md -------------------------------------------------------------------------------- /config/immortalwrt-18.06-k5.4/config.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/config/immortalwrt-18.06-k5.4/config.seed -------------------------------------------------------------------------------- /config/immortalwrt-24.10/config.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/config/immortalwrt-24.10/config.seed -------------------------------------------------------------------------------- /config/istoreos/config.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/config/istoreos/config.seed -------------------------------------------------------------------------------- /config/lede/config.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/config/lede/config.seed -------------------------------------------------------------------------------- /config/openwrt-24.10/config.seed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/config/openwrt-24.10/config.seed -------------------------------------------------------------------------------- /doc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/doc/readme.md -------------------------------------------------------------------------------- /doc/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/doc/release.md -------------------------------------------------------------------------------- /doc/sing-box-subscribe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/doc/sing-box-subscribe.md -------------------------------------------------------------------------------- /doc/sing-box.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/doc/sing-box.md -------------------------------------------------------------------------------- /doc/sing-box_new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/doc/sing-box_new.md -------------------------------------------------------------------------------- /doc/stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/doc/stream.md -------------------------------------------------------------------------------- /files/bridge/etc/sysctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/files/bridge/etc/sysctl.conf -------------------------------------------------------------------------------- /files/cpufreq/etc/config/cpufreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/files/cpufreq/etc/config/cpufreq -------------------------------------------------------------------------------- /files/init/etc/shinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/files/init/etc/shinit -------------------------------------------------------------------------------- /files/init/root/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/files/init/root/.vimrc -------------------------------------------------------------------------------- /files/local_feeds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/files/local_feeds.sh -------------------------------------------------------------------------------- /img/phicomm-n1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/img/phicomm-n1.jpg -------------------------------------------------------------------------------- /patch/cgroupfs-mount/0001-fix-cgroupfs-mount.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/cgroupfs-mount/0001-fix-cgroupfs-mount.patch -------------------------------------------------------------------------------- /patch/cgroupfs-mount/900-mount-cgroup-v2-hierarchy-to-sys-fs-cgroup-cgroup2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/cgroupfs-mount/900-mount-cgroup-v2-hierarchy-to-sys-fs-cgroup-cgroup2.patch -------------------------------------------------------------------------------- /patch/cgroupfs-mount/901-fix-cgroupfs-umount.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/cgroupfs-mount/901-fix-cgroupfs-umount.patch -------------------------------------------------------------------------------- /patch/cgroupfs-mount/902-mount-sys-fs-cgroup-systemd-for-docker-systemd-suppo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/cgroupfs-mount/902-mount-sys-fs-cgroup-systemd-for-docker-systemd-suppo.patch -------------------------------------------------------------------------------- /patch/curl/downgrade_curl_8.6.0_to_8.5.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/curl/downgrade_curl_8.6.0_to_8.5.0.patch -------------------------------------------------------------------------------- /patch/custom_install/istoreos/custom_target_amlogic_scripts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/custom_install/istoreos/custom_target_amlogic_scripts.patch -------------------------------------------------------------------------------- /patch/custom_install/lede/custom_target_amlogic_scripts.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/custom_install/lede/custom_target_amlogic_scripts.patch -------------------------------------------------------------------------------- /patch/default-settings/immortalwrt-18.06/zzz-default-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/default-settings/immortalwrt-18.06/zzz-default-settings -------------------------------------------------------------------------------- /patch/default-settings/immortalwrt-24.10/zzz-default-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/default-settings/immortalwrt-24.10/zzz-default-settings -------------------------------------------------------------------------------- /patch/default-settings/istoreos/zzz-default-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/default-settings/istoreos/zzz-default-settings -------------------------------------------------------------------------------- /patch/default-settings/lede/zzz-default-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/default-settings/lede/zzz-default-settings -------------------------------------------------------------------------------- /patch/default-settings/openwrt-24.10/zzz-default-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/default-settings/openwrt-24.10/zzz-default-settings -------------------------------------------------------------------------------- /patch/firewall/04-luci-add-firewall4-nft-rules-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/firewall/04-luci-add-firewall4-nft-rules-file.patch -------------------------------------------------------------------------------- /patch/firewall/100-openwrt-firewall4-add-custom-nft-command-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/firewall/100-openwrt-firewall4-add-custom-nft-command-support.patch -------------------------------------------------------------------------------- /patch/sing-box/jq/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/jq/install.sh -------------------------------------------------------------------------------- /patch/sing-box/jq/iptables/china_ip4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/jq/iptables/china_ip4.txt -------------------------------------------------------------------------------- /patch/sing-box/jq/iptables/firewall_post.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/jq/iptables/firewall_post.rules -------------------------------------------------------------------------------- /patch/sing-box/jq/iptables/sing-box.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/jq/iptables/sing-box.init -------------------------------------------------------------------------------- /patch/sing-box/jq/nftables/china_ip4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/jq/nftables/china_ip4.txt -------------------------------------------------------------------------------- /patch/sing-box/jq/nftables/firewall_post.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/jq/nftables/firewall_post.rules -------------------------------------------------------------------------------- /patch/sing-box/jq/nftables/sing-box.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/jq/nftables/sing-box.init -------------------------------------------------------------------------------- /patch/sing-box/jq/shared/generate_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/jq/shared/generate_config.sh -------------------------------------------------------------------------------- /patch/sing-box/jq/shared/sing-box.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/jq/shared/sing-box.conf -------------------------------------------------------------------------------- /patch/sing-box/ucode/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/ucode/install.sh -------------------------------------------------------------------------------- /patch/sing-box/ucode/iptables/china_ip4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/ucode/iptables/china_ip4.txt -------------------------------------------------------------------------------- /patch/sing-box/ucode/iptables/firewall_post.ut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/ucode/iptables/firewall_post.ut -------------------------------------------------------------------------------- /patch/sing-box/ucode/iptables/sing-box.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/ucode/iptables/sing-box.init -------------------------------------------------------------------------------- /patch/sing-box/ucode/nftables/china_ip4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/ucode/nftables/china_ip4.txt -------------------------------------------------------------------------------- /patch/sing-box/ucode/nftables/firewall_post.ut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/ucode/nftables/firewall_post.ut -------------------------------------------------------------------------------- /patch/sing-box/ucode/nftables/sing-box.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/ucode/nftables/sing-box.init -------------------------------------------------------------------------------- /patch/sing-box/ucode/shared/generate_config.uc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/ucode/shared/generate_config.uc -------------------------------------------------------------------------------- /patch/sing-box/ucode/shared/sing-box.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/ucode/shared/sing-box.conf -------------------------------------------------------------------------------- /patch/sing-box/ucode/shared/stream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/patch/sing-box/ucode/shared/stream.json -------------------------------------------------------------------------------- /scripts/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/scripts/functions.sh -------------------------------------------------------------------------------- /scripts/immortalwrt-18.06-k5.4/01_prepare_source_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/scripts/immortalwrt-18.06-k5.4/01_prepare_source_code.sh -------------------------------------------------------------------------------- /scripts/immortalwrt-18.06-k5.4/02_prepare_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/scripts/immortalwrt-18.06-k5.4/02_prepare_package.sh -------------------------------------------------------------------------------- /scripts/immortalwrt-24.10/01_prepare_source_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/scripts/immortalwrt-24.10/01_prepare_source_code.sh -------------------------------------------------------------------------------- /scripts/immortalwrt-24.10/02_prepare_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/scripts/immortalwrt-24.10/02_prepare_package.sh -------------------------------------------------------------------------------- /scripts/istoreos/01_prepare_source_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/scripts/istoreos/01_prepare_source_code.sh -------------------------------------------------------------------------------- /scripts/istoreos/02_prepare_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/scripts/istoreos/02_prepare_package.sh -------------------------------------------------------------------------------- /scripts/lede/01_prepare_source_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/scripts/lede/01_prepare_source_code.sh -------------------------------------------------------------------------------- /scripts/lede/02_prepare_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/scripts/lede/02_prepare_package.sh -------------------------------------------------------------------------------- /scripts/openwrt-24.10/01_prepare_source_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/scripts/openwrt-24.10/01_prepare_source_code.sh -------------------------------------------------------------------------------- /scripts/openwrt-24.10/02_prepare_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ffuqiangg/build_openwrt/HEAD/scripts/openwrt-24.10/02_prepare_package.sh --------------------------------------------------------------------------------