1.. SPDX-License-Identifier: GPL-2.0+
2
3Android A/B updates
4===================
5
6Overview
7--------
8
9A/B system updates ensures modern approach for system update. This feature
10allows one to use two sets (or more) of partitions referred to as slots
11(normally slot A and slot B). The system runs from the current slot while the
12partitions in the unused slot can be updated [1]_.
13
14A/B enablement
15--------------
16
17The A/B updates support can be activated by specifying next options in
18your board configuration file::
19
20    CONFIG_ANDROID_AB=y
21    CONFIG_CMD_AB_SELECT=y
22
23The disk space on target device must be partitioned in a way so that each
24partition which needs to be updated has two or more instances. The name of
25each instance must be formed by adding suffixes: ``_a``, ``_b``, ``_c``, etc.
26For example: ``boot_a``, ``boot_b``, ``system_a``, ``system_b``, ``vendor_a``,
27``vendor_b``.
28
29As a result you can use ``ab_select`` command to ensure A/B boot process in your
30boot script. This command analyzes and processes A/B metadata stored on a
31special partition (e.g. ``misc``) and determines which slot should be used for
32booting up.
33
34Command usage
35-------------
36
37.. code-block:: none
38
39    ab_select <slot_var_name> <interface> <dev[:part_number|#part_name]>
40
41for example::
42
43    => ab_select slot_name mmc 1:4
44
45or::
46
47    => ab_select slot_name mmc 1#misc
48
49Result::
50
51    => printenv slot_name
52    slot_name=a
53
54Based on this slot information, the current boot partition should be defined,
55and next kernel command line parameters should be generated:
56
57* ``androidboot.slot_suffix=``
58* ``root=``
59
60For example::
61
62    androidboot.slot_suffix=_a root=/dev/mmcblk1p12
63
64A/B metadata is organized according to AOSP reference [2]_. On the first system
65start with A/B enabled, when ``misc`` partition doesn't contain required data,
66the default A/B metadata will be created and written to ``misc`` partition.
67
68References
69----------
70
71.. [1] https://source.android.com/devices/tech/ota/ab
72.. [2] https://android.googlesource.com/platform/bootable/recovery/+/refs/tags/android-10.0.0_r25/bootloader_message/include/bootloader_message/bootloader_message.h
73