From ed9342ddc854b13e5bd2a41d7227487a3bb11186 Mon Sep 17 00:00:00 2001 From: Jishnu Mondal Date: Sun, 26 Jul 2026 00:40:01 +0530 Subject: [PATCH] docs: add FAQ for new contributors --- docs/FAQ.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 docs/FAQ.md diff --git a/docs/FAQ.md b/docs/FAQ.md new file mode 100644 index 0000000000000..af1c62cc21f9d --- /dev/null +++ b/docs/FAQ.md @@ -0,0 +1,23 @@ +# Frequently Asked Questions (FAQ) +## What is Xiaomi Kernel OpenSource? +This repository contains Linux kernel source code released by Xiaomi for supported Xiaomi, Redmi, and POCO devices. Developers can use these sources to build custom kernels and contribute improvements. +## What is a kernel source? +The Linux kernel is the core of the Android operating system. Kernel source code allows developers to build custom kernels, fix bugs, and improve hardware support. +## Which branch should I use? +Each device has its own kernel branch. + +Find your device in the README and use the branch listed for your device. +## How do I know my device codename? +You can check your device codename using: + +adb shell getprop ro.product.device + +Then search for that codename in the README. +## Why isn't my device listed? +Possible reasons include: + +- Xiaomi has not released the kernel source. +- The repository has not yet been updated. +- Your device uses another codename. +## What compiler is required? +The required compiler depends on the specific kernel branch. Refer to the branch documentation or build scripts for the recommended compiler version. \ No newline at end of file