How to build kernel for Android

Revision as of 17:13, 16 July 2024 by Registered User
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Applicable for STM32MP25x lines

This article explains how to build the Android® kernel binaries (including the kernel image, the modules and the device trees) for a selected STM32 device. It is intended for Distribution Package users.

The Android™ Linux® Common kernel is used in the distribution package.

1. Prerequisites[edit source]

The environment must be installed using the Distribution Package adapted to the selected microprocessor device.

To be able to execute the following instructions work from the distribution root directory and initialize the environment:

 source build/envsetup.sh
 bspsetup
 lunch aosp_<BoardId>-userdebug

The distribution includes prebuilt kernel binaries used to generate the partition images (boot, dt and vendor). These binaries are available in the device/stm/<STM32Series>-kernel/prebuilt directory.

2. Partition layout[edit source]

The Linux® kernel binary is part of the boot partition.

The Linux® kernel drivers built as loadable modules (.ko files) are part of the vendor_boot partition for modules required in the first stage of initialisation (part of an integrated ramdisk) and vendor partitions for the remaining modules.

The device tree binaries are part of the vendor_boot partition for the SoC dependent device-tree and of the dtbo partition for the Board dependent device tree overlay.

For information on the complete partition layout for the selected development platform, refer to the corresponding Flash mapping article named Your_development_platform Flash mapping for Android. Example: STM32 MPU Flash mapping for Android for the STM32MP25x boards.

All Flash mapping for Android™ articles belong to the Category:Flash mapping for Android.

3. Load the kernel sources[edit source]

By default, the kernel sources are not part of the OpenSTDroid distribution. To load the sources, execute the following instruction:

 load_kernel

This will load the Android™ common Linux® kernel sources. These are located in the device/stm/<STM32Series>-kernel/linux-<STM32Series> directory.

Info white.png Information

The load_kernel script uses the configuration file available in the /device/stm/<STM32Series>-kernel/source/patch/<kernel version>/ directory.

4. Build the kernel[edit source]

After retrieving the kernel sources, it is built using:

 build_kernel
Info white.png Information
By default, kernel debug configuration is used for userdebug or eng build variant

The output is located in: out-bsp/<STM32Series>/KERNEL_OBJ


This instruction generates the kernel image, the device tree blobs and the modules (including the specific GPU driver module). It is possible to generate them separately from one another:

 build_kernel vmlinux
 build_kernel modules
 build_kernel dtb
 build_kernel gpu


To get back more details on available options, run:

 build_kernel -h

Here after, see the result for the version 1.7:

Usage: build_kernel [Options] [Command]

  This script allows building the Linux kernel source

Options:
  -h/--help: print this message and exit
  -v/--version: print script version and exit
  -i/--install: update prebuilt images
  -d <val>/--debug=<val>: if <val>=1; integrate debug kernel configuration (default for userdebug or eng build variant)
                          if <val>=0; remove debug kernel configuration (default for user build variant)
  -g/--gdb: generate vmlinux (kernel incl. symbols) and don't strip generated modules (keep symbols)
  --gcc: use gcc toolchain instead of clang (bspsetup shall be executed before)
  --verbose=<level>: enable verbosity (1 or 2 depending on level of verbosity required)
Command: only one command at a time supported
  dtb: build only device-tree binaries
  gpu: build only gpu module (kernel is build if not already performed)
  defaultconfig: build only .config based on default defconfig files and fragments
  menuconfig: display standard Linux kernel menuconfig interface
  modules: build only kernel modules binaries (kernel is build if not already performed)
  modules_install: build kernel modules binaries (kernel is built if not already performed) and install them (also update the module.dep file)
  mrproper: execute make mrproper on targeted kernel
  vmlinux: build only kernel vmlinux binary

5. Integrate the kernel[edit source]

To integrate the new kernel, modules or/and device tree in the distribution, the prebuilt images have to be update first:

 build_kernel -i

or

 build_kernel -i vmlinux
 build_kernel -i modules
 build_kernel -i gpu
 build_kernel -i dtb


And then build the distribution to generate output images.

 make -j

Finally, update the associated device partitions. Refer to How to populate boards for Android.

6. Customize the kernel[edit source]

If the kernel configuration has to be changed, refer to How to customize the kernel for Android page.