├── .devcontainer ├── builder-full │ ├── devcontainer.json │ ├── initializecommand.sh │ ├── oncreatecontainer.sh │ └── postcreatecontainer.sh ├── builder-min │ ├── devcontainer.json │ ├── initializecommand.sh │ ├── oncreatecontainer.sh │ └── postcreatecontainer.sh └── scripts │ ├── init-kitchen.sh │ ├── setup-android-partition-tools.sh │ ├── setup-arm-gnu-toolchain.sh │ ├── setup-boot-image-editor.sh │ ├── setup-deps.sh │ └── setup-neutron-clang.sh ├── .github └── workflows │ ├── build-docker-full.yml │ └── build-docker-minimal.yml ├── .gitignore ├── .gitmodules ├── Git-for-beginners ├── ADVANCED.md └── README.md ├── LICENSE ├── README.md ├── additional-guides └── bazel.md ├── devcontainers ├── img │ ├── managecodespace-1.png │ ├── newcodespace-1.png │ ├── newcodespace-2.png │ ├── newcodespace-3.png │ ├── usingcodespace-1.png │ ├── usingcodespace-2.png │ ├── usingcodespace-3.png │ ├── usingcodespace-4.png │ └── vscodewebui.png └── readme.md ├── docker ├── README.md ├── build-container-full.sh ├── build-container-minimal.sh ├── full │ └── Dockerfile ├── kernel-builder.sh └── minimal │ └── Dockerfile ├── patches ├── 001.nuke_out.patch ├── 002.fix_aarch64-linux-gnu-gcc-command-not-found.patch ├── 003.fix_fstack-protector-strong-not-supported-by-compiler.patch ├── 004.remove_gcc wrapper.patch ├── 005.edit-defconfig.patch ├── 006.dtc_Use-pkg-config-to-locate-libyaml.patch ├── 007.Define-OEM-Variables.patch ├── 008.add-custom-defconfig-support.patch ├── 009.fix-Werror.patch ├── 010.Disable-CRC-Checks.patch ├── 011.stock_defconfig.patch ├── 012.force-selinux-permissive.patch ├── 013.force-selinux-permissive-defconfig.patch ├── 014.build_gzip_compressed_kernel.patch ├── 015.fix_gen_kheaders.sh_cpio_not_found.patch ├── 016.KernelSU-Hooks.patch ├── 017.nuke_dirty_string.patch ├── 018.yylloc.patch ├── 019.secclass.patch ├── 020.sec_debug_test.patch ├── 021.ologk.patch ├── 022.tz_deploy_tzar.patch ├── 023.undefined_reference_to_`yaml_emitter_initialize'.patch ├── 024.as:_unrecognized_option_'-EL'.patch ├── 025.undefined_reference_to_'stpcpy'.patch ├── 026.state_notifier.h_not_found.patch ├── 027.fixed_multiple_definition_of_'is_space'.patch ├── 028.ioctl_cfg80211.c_ error_ too_many_arguments_to_function_call,_expected_3,_have_8.patch └── README.md ├── samsung-rkp └── README.md ├── screenshots ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 14.png ├── 15.png ├── 16.png ├── 17.png ├── 18.png ├── 19.png ├── 2.png ├── 20.png ├── 21.png ├── 22.png ├── 23.png ├── 24.png ├── 25.png ├── 26.png ├── 27.png ├── 28.png ├── 29.jpg ├── 3.png ├── 30.png ├── 31.png ├── 32.png ├── 33.png ├── 34.png ├── 35.png ├── 36.png ├── 37.png ├── 38.png ├── 39.png ├── 4.png ├── 40.png ├── 41.png ├── 42.png ├── 43.png ├── 44.png ├── 45.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png ├── 9.png ├── gif │ ├── 1.gif │ ├── 2.gif │ ├── 3.gif │ ├── 4.gif │ ├── 5.gif │ └── 6.gif └── kernel-builder.png ├── special-tools ├── how_to.md └── lkm_installer.sh └── toolchains └── README.md /.devcontainer/builder-full/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.devcontainer/builder-full/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/builder-full/initializecommand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.devcontainer/builder-full/initializecommand.sh -------------------------------------------------------------------------------- /.devcontainer/builder-full/oncreatecontainer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.devcontainer/builder-full/oncreatecontainer.sh -------------------------------------------------------------------------------- /.devcontainer/builder-full/postcreatecontainer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.devcontainer/builder-full/postcreatecontainer.sh -------------------------------------------------------------------------------- /.devcontainer/builder-min/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.devcontainer/builder-min/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/builder-min/initializecommand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.devcontainer/builder-min/initializecommand.sh -------------------------------------------------------------------------------- /.devcontainer/builder-min/oncreatecontainer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.devcontainer/builder-min/oncreatecontainer.sh -------------------------------------------------------------------------------- /.devcontainer/builder-min/postcreatecontainer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.devcontainer/builder-min/postcreatecontainer.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/init-kitchen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.devcontainer/scripts/init-kitchen.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/setup-android-partition-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.devcontainer/scripts/setup-android-partition-tools.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/setup-arm-gnu-toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.devcontainer/scripts/setup-arm-gnu-toolchain.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/setup-boot-image-editor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.devcontainer/scripts/setup-boot-image-editor.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/setup-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.devcontainer/scripts/setup-deps.sh -------------------------------------------------------------------------------- /.devcontainer/scripts/setup-neutron-clang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.devcontainer/scripts/setup-neutron-clang.sh -------------------------------------------------------------------------------- /.github/workflows/build-docker-full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.github/workflows/build-docker-full.yml -------------------------------------------------------------------------------- /.github/workflows/build-docker-minimal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.github/workflows/build-docker-minimal.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/.gitmodules -------------------------------------------------------------------------------- /Git-for-beginners/ADVANCED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/Git-for-beginners/ADVANCED.md -------------------------------------------------------------------------------- /Git-for-beginners/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/Git-for-beginners/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/README.md -------------------------------------------------------------------------------- /additional-guides/bazel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/additional-guides/bazel.md -------------------------------------------------------------------------------- /devcontainers/img/managecodespace-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/devcontainers/img/managecodespace-1.png -------------------------------------------------------------------------------- /devcontainers/img/newcodespace-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/devcontainers/img/newcodespace-1.png -------------------------------------------------------------------------------- /devcontainers/img/newcodespace-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/devcontainers/img/newcodespace-2.png -------------------------------------------------------------------------------- /devcontainers/img/newcodespace-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/devcontainers/img/newcodespace-3.png -------------------------------------------------------------------------------- /devcontainers/img/usingcodespace-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/devcontainers/img/usingcodespace-1.png -------------------------------------------------------------------------------- /devcontainers/img/usingcodespace-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/devcontainers/img/usingcodespace-2.png -------------------------------------------------------------------------------- /devcontainers/img/usingcodespace-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/devcontainers/img/usingcodespace-3.png -------------------------------------------------------------------------------- /devcontainers/img/usingcodespace-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/devcontainers/img/usingcodespace-4.png -------------------------------------------------------------------------------- /devcontainers/img/vscodewebui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/devcontainers/img/vscodewebui.png -------------------------------------------------------------------------------- /devcontainers/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/devcontainers/readme.md -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/build-container-full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/docker/build-container-full.sh -------------------------------------------------------------------------------- /docker/build-container-minimal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/docker/build-container-minimal.sh -------------------------------------------------------------------------------- /docker/full/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/docker/full/Dockerfile -------------------------------------------------------------------------------- /docker/kernel-builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/docker/kernel-builder.sh -------------------------------------------------------------------------------- /docker/minimal/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/docker/minimal/Dockerfile -------------------------------------------------------------------------------- /patches/001.nuke_out.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/001.nuke_out.patch -------------------------------------------------------------------------------- /patches/002.fix_aarch64-linux-gnu-gcc-command-not-found.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/002.fix_aarch64-linux-gnu-gcc-command-not-found.patch -------------------------------------------------------------------------------- /patches/003.fix_fstack-protector-strong-not-supported-by-compiler.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/003.fix_fstack-protector-strong-not-supported-by-compiler.patch -------------------------------------------------------------------------------- /patches/004.remove_gcc wrapper.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/004.remove_gcc wrapper.patch -------------------------------------------------------------------------------- /patches/005.edit-defconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/005.edit-defconfig.patch -------------------------------------------------------------------------------- /patches/006.dtc_Use-pkg-config-to-locate-libyaml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/006.dtc_Use-pkg-config-to-locate-libyaml.patch -------------------------------------------------------------------------------- /patches/007.Define-OEM-Variables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/007.Define-OEM-Variables.patch -------------------------------------------------------------------------------- /patches/008.add-custom-defconfig-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/008.add-custom-defconfig-support.patch -------------------------------------------------------------------------------- /patches/009.fix-Werror.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/009.fix-Werror.patch -------------------------------------------------------------------------------- /patches/010.Disable-CRC-Checks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/010.Disable-CRC-Checks.patch -------------------------------------------------------------------------------- /patches/011.stock_defconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/011.stock_defconfig.patch -------------------------------------------------------------------------------- /patches/012.force-selinux-permissive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/012.force-selinux-permissive.patch -------------------------------------------------------------------------------- /patches/013.force-selinux-permissive-defconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/013.force-selinux-permissive-defconfig.patch -------------------------------------------------------------------------------- /patches/014.build_gzip_compressed_kernel.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/014.build_gzip_compressed_kernel.patch -------------------------------------------------------------------------------- /patches/015.fix_gen_kheaders.sh_cpio_not_found.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/015.fix_gen_kheaders.sh_cpio_not_found.patch -------------------------------------------------------------------------------- /patches/016.KernelSU-Hooks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/016.KernelSU-Hooks.patch -------------------------------------------------------------------------------- /patches/017.nuke_dirty_string.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/017.nuke_dirty_string.patch -------------------------------------------------------------------------------- /patches/018.yylloc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/018.yylloc.patch -------------------------------------------------------------------------------- /patches/019.secclass.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/019.secclass.patch -------------------------------------------------------------------------------- /patches/020.sec_debug_test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/020.sec_debug_test.patch -------------------------------------------------------------------------------- /patches/021.ologk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/021.ologk.patch -------------------------------------------------------------------------------- /patches/022.tz_deploy_tzar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/022.tz_deploy_tzar.patch -------------------------------------------------------------------------------- /patches/023.undefined_reference_to_`yaml_emitter_initialize'.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/023.undefined_reference_to_`yaml_emitter_initialize'.patch -------------------------------------------------------------------------------- /patches/024.as:_unrecognized_option_'-EL'.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/024.as:_unrecognized_option_'-EL'.patch -------------------------------------------------------------------------------- /patches/025.undefined_reference_to_'stpcpy'.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/025.undefined_reference_to_'stpcpy'.patch -------------------------------------------------------------------------------- /patches/026.state_notifier.h_not_found.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/026.state_notifier.h_not_found.patch -------------------------------------------------------------------------------- /patches/027.fixed_multiple_definition_of_'is_space'.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/027.fixed_multiple_definition_of_'is_space'.patch -------------------------------------------------------------------------------- /patches/028.ioctl_cfg80211.c_ error_ too_many_arguments_to_function_call,_expected_3,_have_8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/028.ioctl_cfg80211.c_ error_ too_many_arguments_to_function_call,_expected_3,_have_8.patch -------------------------------------------------------------------------------- /patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/patches/README.md -------------------------------------------------------------------------------- /samsung-rkp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/samsung-rkp/README.md -------------------------------------------------------------------------------- /screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/1.png -------------------------------------------------------------------------------- /screenshots/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/10.png -------------------------------------------------------------------------------- /screenshots/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/11.png -------------------------------------------------------------------------------- /screenshots/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/12.png -------------------------------------------------------------------------------- /screenshots/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/13.png -------------------------------------------------------------------------------- /screenshots/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/14.png -------------------------------------------------------------------------------- /screenshots/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/15.png -------------------------------------------------------------------------------- /screenshots/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/16.png -------------------------------------------------------------------------------- /screenshots/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/17.png -------------------------------------------------------------------------------- /screenshots/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/18.png -------------------------------------------------------------------------------- /screenshots/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/19.png -------------------------------------------------------------------------------- /screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/2.png -------------------------------------------------------------------------------- /screenshots/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/20.png -------------------------------------------------------------------------------- /screenshots/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/21.png -------------------------------------------------------------------------------- /screenshots/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/22.png -------------------------------------------------------------------------------- /screenshots/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/23.png -------------------------------------------------------------------------------- /screenshots/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/24.png -------------------------------------------------------------------------------- /screenshots/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/25.png -------------------------------------------------------------------------------- /screenshots/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/26.png -------------------------------------------------------------------------------- /screenshots/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/27.png -------------------------------------------------------------------------------- /screenshots/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/28.png -------------------------------------------------------------------------------- /screenshots/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/29.jpg -------------------------------------------------------------------------------- /screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/3.png -------------------------------------------------------------------------------- /screenshots/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/30.png -------------------------------------------------------------------------------- /screenshots/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/31.png -------------------------------------------------------------------------------- /screenshots/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/32.png -------------------------------------------------------------------------------- /screenshots/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/33.png -------------------------------------------------------------------------------- /screenshots/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/34.png -------------------------------------------------------------------------------- /screenshots/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/35.png -------------------------------------------------------------------------------- /screenshots/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/36.png -------------------------------------------------------------------------------- /screenshots/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/37.png -------------------------------------------------------------------------------- /screenshots/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/38.png -------------------------------------------------------------------------------- /screenshots/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/39.png -------------------------------------------------------------------------------- /screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/4.png -------------------------------------------------------------------------------- /screenshots/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/40.png -------------------------------------------------------------------------------- /screenshots/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/41.png -------------------------------------------------------------------------------- /screenshots/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/42.png -------------------------------------------------------------------------------- /screenshots/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/43.png -------------------------------------------------------------------------------- /screenshots/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/44.png -------------------------------------------------------------------------------- /screenshots/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/45.png -------------------------------------------------------------------------------- /screenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/5.png -------------------------------------------------------------------------------- /screenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/6.png -------------------------------------------------------------------------------- /screenshots/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/7.png -------------------------------------------------------------------------------- /screenshots/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/8.png -------------------------------------------------------------------------------- /screenshots/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/9.png -------------------------------------------------------------------------------- /screenshots/gif/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/gif/1.gif -------------------------------------------------------------------------------- /screenshots/gif/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/gif/2.gif -------------------------------------------------------------------------------- /screenshots/gif/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/gif/3.gif -------------------------------------------------------------------------------- /screenshots/gif/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/gif/4.gif -------------------------------------------------------------------------------- /screenshots/gif/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/gif/5.gif -------------------------------------------------------------------------------- /screenshots/gif/6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/gif/6.gif -------------------------------------------------------------------------------- /screenshots/kernel-builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/screenshots/kernel-builder.png -------------------------------------------------------------------------------- /special-tools/how_to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/special-tools/how_to.md -------------------------------------------------------------------------------- /special-tools/lkm_installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/special-tools/lkm_installer.sh -------------------------------------------------------------------------------- /toolchains/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravindu644/Android-Kernel-Tutorials/HEAD/toolchains/README.md --------------------------------------------------------------------------------