├── .config ├── .github └── workflows │ ├── build-openwrt.yml │ └── update-checker.yml ├── LICENSE ├── README.md ├── diy-part1.sh ├── diy-part2.sh ├── feeds.conf.default └── initialization_script.sh /.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiajiaxd/openwrt_x86/HEAD/.config -------------------------------------------------------------------------------- /.github/workflows/build-openwrt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiajiaxd/openwrt_x86/HEAD/.github/workflows/build-openwrt.yml -------------------------------------------------------------------------------- /.github/workflows/update-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiajiaxd/openwrt_x86/HEAD/.github/workflows/update-checker.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiajiaxd/openwrt_x86/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiajiaxd/openwrt_x86/HEAD/README.md -------------------------------------------------------------------------------- /diy-part1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiajiaxd/openwrt_x86/HEAD/diy-part1.sh -------------------------------------------------------------------------------- /diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiajiaxd/openwrt_x86/HEAD/diy-part2.sh -------------------------------------------------------------------------------- /feeds.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiajiaxd/openwrt_x86/HEAD/feeds.conf.default -------------------------------------------------------------------------------- /initialization_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiajiaxd/openwrt_x86/HEAD/initialization_script.sh --------------------------------------------------------------------------------