├── .github ├── .gitkeep ├── ISSUE_TEMPLATE │ └── bug-report.md └── workflows │ ├── build-armbian-arm64-docker-image.yml │ ├── build-armbian-arm64-server-image.yml │ ├── build-armbian-using-official-image.yml │ ├── build-armbian-using-releases-files.yml │ ├── build-armbian-x86-server-image.yml │ ├── compile-kernel-on-a-server.yml │ ├── compile-kernel-using-docker.yml │ └── delete-older-releases-workflows.yml ├── .gitignore ├── CONTRIBUTORS.md ├── 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.4 │ ├── config-6.1 │ ├── config-6.12 │ └── config-6.6 │ ├── patch │ └── .gitkeep │ └── script │ ├── armbian-compile-kernel-depends │ ├── armbian_compile_kernel.sh │ ├── docker │ ├── Dockerfile │ ├── build_armbian_docker_image.sh │ ├── build_armbian_rootfs_file.sh │ └── docker_startup.sh │ ├── ubuntu2204-build-armbian-depends │ ├── ubuntu2404-build-armbian-depends │ └── ubuntu_chroot_armbian.sh ├── documents ├── README.cn.md ├── README.md ├── android_partition_table_template.xlsx ├── armbian_software.md └── led_screen_display_control.md ├── rebuild └── recompile /.github/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/workflows/build-armbian-arm64-docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/.github/workflows/build-armbian-arm64-docker-image.yml -------------------------------------------------------------------------------- /.github/workflows/build-armbian-arm64-server-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/.github/workflows/build-armbian-arm64-server-image.yml -------------------------------------------------------------------------------- /.github/workflows/build-armbian-using-official-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/.github/workflows/build-armbian-using-official-image.yml -------------------------------------------------------------------------------- /.github/workflows/build-armbian-using-releases-files.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/.github/workflows/build-armbian-using-releases-files.yml -------------------------------------------------------------------------------- /.github/workflows/build-armbian-x86-server-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/.github/workflows/build-armbian-x86-server-image.yml -------------------------------------------------------------------------------- /.github/workflows/compile-kernel-on-a-server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/.github/workflows/compile-kernel-on-a-server.yml -------------------------------------------------------------------------------- /.github/workflows/compile-kernel-using-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/.github/workflows/compile-kernel-using-docker.yml -------------------------------------------------------------------------------- /.github/workflows/delete-older-releases-workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/.github/workflows/delete-older-releases-workflows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/LICENSE -------------------------------------------------------------------------------- /README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/README.cn.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/action.yml -------------------------------------------------------------------------------- /compile-kernel/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/compile-kernel/README.cn.md -------------------------------------------------------------------------------- /compile-kernel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/compile-kernel/README.md -------------------------------------------------------------------------------- /compile-kernel/tools/config/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/compile-kernel/tools/config/config-5.10 -------------------------------------------------------------------------------- /compile-kernel/tools/config/config-5.15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/compile-kernel/tools/config/config-5.15 -------------------------------------------------------------------------------- /compile-kernel/tools/config/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/compile-kernel/tools/config/config-5.4 -------------------------------------------------------------------------------- /compile-kernel/tools/config/config-6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/compile-kernel/tools/config/config-6.1 -------------------------------------------------------------------------------- /compile-kernel/tools/config/config-6.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/compile-kernel/tools/config/config-6.12 -------------------------------------------------------------------------------- /compile-kernel/tools/config/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/compile-kernel/tools/config/config-6.6 -------------------------------------------------------------------------------- /compile-kernel/tools/patch/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compile-kernel/tools/script/armbian-compile-kernel-depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/compile-kernel/tools/script/armbian-compile-kernel-depends -------------------------------------------------------------------------------- /compile-kernel/tools/script/armbian_compile_kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/compile-kernel/tools/script/armbian_compile_kernel.sh -------------------------------------------------------------------------------- /compile-kernel/tools/script/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/compile-kernel/tools/script/docker/Dockerfile -------------------------------------------------------------------------------- /compile-kernel/tools/script/docker/build_armbian_docker_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/compile-kernel/tools/script/docker/build_armbian_docker_image.sh -------------------------------------------------------------------------------- /compile-kernel/tools/script/docker/build_armbian_rootfs_file.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/compile-kernel/tools/script/docker/build_armbian_rootfs_file.sh -------------------------------------------------------------------------------- /compile-kernel/tools/script/docker/docker_startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/compile-kernel/tools/script/docker/docker_startup.sh -------------------------------------------------------------------------------- /compile-kernel/tools/script/ubuntu2204-build-armbian-depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/compile-kernel/tools/script/ubuntu2204-build-armbian-depends -------------------------------------------------------------------------------- /compile-kernel/tools/script/ubuntu2404-build-armbian-depends: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/compile-kernel/tools/script/ubuntu2404-build-armbian-depends -------------------------------------------------------------------------------- /compile-kernel/tools/script/ubuntu_chroot_armbian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/compile-kernel/tools/script/ubuntu_chroot_armbian.sh -------------------------------------------------------------------------------- /documents/README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/documents/README.cn.md -------------------------------------------------------------------------------- /documents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/documents/README.md -------------------------------------------------------------------------------- /documents/android_partition_table_template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/documents/android_partition_table_template.xlsx -------------------------------------------------------------------------------- /documents/armbian_software.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/documents/armbian_software.md -------------------------------------------------------------------------------- /documents/led_screen_display_control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/documents/led_screen_display_control.md -------------------------------------------------------------------------------- /rebuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/rebuild -------------------------------------------------------------------------------- /recompile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ophub/amlogic-s9xxx-armbian/HEAD/recompile --------------------------------------------------------------------------------