├── .github ├── .gitkeep ├── ISSUE_TEMPLATE │ └── bug-report.md └── workflows │ ├── build-armbian.yml │ ├── compile-kernel.yml │ ├── delete-older-releases-workflows.yml │ ├── rebuild-armbian.yml │ └── use-releases-file-to-build.yml ├── .gitignore ├── CONTRIBUTORS.md ├── Dockerfile ├── LICENSE ├── README.cn.md ├── README.md ├── action.yml ├── compile-kernel ├── README.cn.md ├── README.md └── tools │ ├── config │ ├── config-5.10 │ ├── config-5.15 │ ├── config-5.16 │ ├── config-5.17 │ ├── config-5.18 │ ├── config-5.19 │ ├── config-5.4 │ └── config-6.0 │ └── script │ ├── armbian-compile-kernel-depends │ ├── armbian_compile_kernel_script.sh │ ├── ubuntu2004-build-armbian-depends │ ├── ubuntu2004-make-openwrt-depends │ ├── ubuntu2204-build-armbian-depends │ ├── ubuntu2204-make-openwrt-depends │ └── ubuntu_chroot_armbian.sh ├── rebuild └── recompile /.github/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/workflows/build-armbian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/.github/workflows/build-armbian.yml -------------------------------------------------------------------------------- /.github/workflows/compile-kernel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/.github/workflows/compile-kernel.yml -------------------------------------------------------------------------------- /.github/workflows/delete-older-releases-workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/.github/workflows/delete-older-releases-workflows.yml -------------------------------------------------------------------------------- /.github/workflows/rebuild-armbian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/.github/workflows/rebuild-armbian.yml -------------------------------------------------------------------------------- /.github/workflows/use-releases-file-to-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/.github/workflows/use-releases-file-to-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/LICENSE -------------------------------------------------------------------------------- /README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/README.cn.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/action.yml -------------------------------------------------------------------------------- /compile-kernel/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/compile-kernel/README.cn.md -------------------------------------------------------------------------------- /compile-kernel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/compile-kernel/README.md -------------------------------------------------------------------------------- /compile-kernel/tools/config/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/compile-kernel/tools/config/config-5.10 -------------------------------------------------------------------------------- /compile-kernel/tools/config/config-5.15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/compile-kernel/tools/config/config-5.15 -------------------------------------------------------------------------------- /compile-kernel/tools/config/config-5.16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/compile-kernel/tools/config/config-5.16 -------------------------------------------------------------------------------- /compile-kernel/tools/config/config-5.17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/compile-kernel/tools/config/config-5.17 -------------------------------------------------------------------------------- /compile-kernel/tools/config/config-5.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/compile-kernel/tools/config/config-5.18 -------------------------------------------------------------------------------- /compile-kernel/tools/config/config-5.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/compile-kernel/tools/config/config-5.19 -------------------------------------------------------------------------------- /compile-kernel/tools/config/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/compile-kernel/tools/config/config-5.4 -------------------------------------------------------------------------------- /compile-kernel/tools/config/config-6.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/compile-kernel/tools/config/config-6.0 -------------------------------------------------------------------------------- /compile-kernel/tools/script/armbian-compile-kernel-depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/compile-kernel/tools/script/armbian-compile-kernel-depends -------------------------------------------------------------------------------- /compile-kernel/tools/script/armbian_compile_kernel_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/compile-kernel/tools/script/armbian_compile_kernel_script.sh -------------------------------------------------------------------------------- /compile-kernel/tools/script/ubuntu2004-build-armbian-depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/compile-kernel/tools/script/ubuntu2004-build-armbian-depends -------------------------------------------------------------------------------- /compile-kernel/tools/script/ubuntu2004-make-openwrt-depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/compile-kernel/tools/script/ubuntu2004-make-openwrt-depends -------------------------------------------------------------------------------- /compile-kernel/tools/script/ubuntu2204-build-armbian-depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/compile-kernel/tools/script/ubuntu2204-build-armbian-depends -------------------------------------------------------------------------------- /compile-kernel/tools/script/ubuntu2204-make-openwrt-depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/compile-kernel/tools/script/ubuntu2204-make-openwrt-depends -------------------------------------------------------------------------------- /compile-kernel/tools/script/ubuntu_chroot_armbian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/compile-kernel/tools/script/ubuntu_chroot_armbian.sh -------------------------------------------------------------------------------- /rebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/rebuild -------------------------------------------------------------------------------- /recompile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xcray/amlogic-s905l3a-armbian/HEAD/recompile --------------------------------------------------------------------------------