├── .github └── workflows │ ├── Auto-Package.yml │ ├── Repo-Package.yml │ ├── RepoA-Package.yml │ └── RepoB-Package.yml ├── README.md └── devices ├── aarch64_cortex-a53 └── .config ├── aarch64_cortex-a72 └── .config ├── aarch64_cortex-a76 └── .config ├── aarch64_generic ├── .config └── custom.sh ├── arm_arm1176jzf-s_vfp └── .config ├── arm_cortex-a15_neon-vfpv4 ├── .config └── custom.sh ├── arm_cortex-a5_vfpv4 └── .config ├── arm_cortex-a7_neon-vfpv4 ├── .config └── custom.sh ├── arm_cortex-a9 ├── .config └── custom.sh ├── arm_cortex-a9_vfpv3-d16 └── .config ├── common ├── .config ├── custom.sh ├── feeds.conf ├── patches │ ├── Config.in.b.patch │ ├── luci_mk.patch │ ├── netsupport.patch │ ├── package.patch │ ├── package_mk.patch │ ├── rootfs.patch │ └── toplevel.patch ├── po2lmo └── settings.ini ├── i386_pentium4 └── .config ├── mips_24kc ├── .config └── custom.sh ├── mipsel_24kc ├── .config └── custom.sh └── x86_64 └── .config /.github/workflows/Auto-Package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/.github/workflows/Auto-Package.yml -------------------------------------------------------------------------------- /.github/workflows/Repo-Package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/.github/workflows/Repo-Package.yml -------------------------------------------------------------------------------- /.github/workflows/RepoA-Package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/.github/workflows/RepoA-Package.yml -------------------------------------------------------------------------------- /.github/workflows/RepoB-Package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/.github/workflows/RepoB-Package.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/README.md -------------------------------------------------------------------------------- /devices/aarch64_cortex-a53/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/devices/aarch64_cortex-a53/.config -------------------------------------------------------------------------------- /devices/aarch64_cortex-a72/.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devices/aarch64_cortex-a76/.config: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /devices/aarch64_generic/.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devices/aarch64_generic/custom.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /devices/arm_arm1176jzf-s_vfp/.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devices/arm_cortex-a15_neon-vfpv4/.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devices/arm_cortex-a15_neon-vfpv4/custom.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /devices/arm_cortex-a5_vfpv4/.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devices/arm_cortex-a7_neon-vfpv4/.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devices/arm_cortex-a7_neon-vfpv4/custom.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /devices/arm_cortex-a9/.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devices/arm_cortex-a9/custom.sh: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /devices/arm_cortex-a9_vfpv3-d16/.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devices/common/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/devices/common/.config -------------------------------------------------------------------------------- /devices/common/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/devices/common/custom.sh -------------------------------------------------------------------------------- /devices/common/feeds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/devices/common/feeds.conf -------------------------------------------------------------------------------- /devices/common/patches/Config.in.b.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/devices/common/patches/Config.in.b.patch -------------------------------------------------------------------------------- /devices/common/patches/luci_mk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/devices/common/patches/luci_mk.patch -------------------------------------------------------------------------------- /devices/common/patches/netsupport.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/devices/common/patches/netsupport.patch -------------------------------------------------------------------------------- /devices/common/patches/package.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/devices/common/patches/package.patch -------------------------------------------------------------------------------- /devices/common/patches/package_mk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/devices/common/patches/package_mk.patch -------------------------------------------------------------------------------- /devices/common/patches/rootfs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/devices/common/patches/rootfs.patch -------------------------------------------------------------------------------- /devices/common/patches/toplevel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/devices/common/patches/toplevel.patch -------------------------------------------------------------------------------- /devices/common/po2lmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/devices/common/po2lmo -------------------------------------------------------------------------------- /devices/common/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/devices/common/settings.ini -------------------------------------------------------------------------------- /devices/i386_pentium4/.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /devices/mips_24kc/.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | CONFIG_KERNEL_MIPS_FPU_EMULATOR=y 4 | 5 | -------------------------------------------------------------------------------- /devices/mips_24kc/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/devices/mips_24kc/custom.sh -------------------------------------------------------------------------------- /devices/mipsel_24kc/.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | CONFIG_KERNEL_MIPS_FPU_EMULATOR=y 4 | -------------------------------------------------------------------------------- /devices/mipsel_24kc/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenzok8/compile-package/HEAD/devices/mipsel_24kc/custom.sh -------------------------------------------------------------------------------- /devices/x86_64/.config: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------