├── .github ├── hello-ko │ ├── Kconfig │ ├── Makefile │ └── hello-ko.c └── workflows │ └── ci.yml ├── LICENSE ├── README.md └── action.yml /.github/hello-ko/Kconfig: -------------------------------------------------------------------------------- 1 | menu "Kernel Driver" 2 | 3 | endmenu 4 | -------------------------------------------------------------------------------- /.github/hello-ko/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feicong/android-kernel-build-action/HEAD/.github/hello-ko/Makefile -------------------------------------------------------------------------------- /.github/hello-ko/hello-ko.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feicong/android-kernel-build-action/HEAD/.github/hello-ko/hello-ko.c -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feicong/android-kernel-build-action/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feicong/android-kernel-build-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feicong/android-kernel-build-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feicong/android-kernel-build-action/HEAD/action.yml --------------------------------------------------------------------------------