summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorTianjie <xunchang@google.com>2020-12-21 04:46:11 +0100
committerTianjie <xunchang@google.com>2020-12-21 05:00:30 +0100
commit6450acf0322b4288b1935a2dfc0c83fd0c3b3c56 (patch)
tree49409231437647cacced72d3c573b9fff0b7ec7c /README.md
parentMerge "Do not call exit() immediately after serving sideload" (diff)
downloadandroid_bootable_recovery-6450acf0322b4288b1935a2dfc0c83fd0c3b3c56.tar
android_bootable_recovery-6450acf0322b4288b1935a2dfc0c83fd0c3b3c56.tar.gz
android_bootable_recovery-6450acf0322b4288b1935a2dfc0c83fd0c3b3c56.tar.bz2
android_bootable_recovery-6450acf0322b4288b1935a2dfc0c83fd0c3b3c56.tar.lz
android_bootable_recovery-6450acf0322b4288b1935a2dfc0c83fd0c3b3c56.tar.xz
android_bootable_recovery-6450acf0322b4288b1935a2dfc0c83fd0c3b3c56.tar.zst
android_bootable_recovery-6450acf0322b4288b1935a2dfc0c83fd0c3b3c56.zip
Diffstat (limited to '')
-rw-r--r--README.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/README.md b/README.md
index bd1cf7dea..5ab19d14c 100644
--- a/README.md
+++ b/README.md
@@ -143,3 +143,17 @@ Note that this mechanism applies to both of normal boot and recovery modes.
Both of the two conditions need to be satisfied. Although `ro.adb.secure` is a runtime property, its
value is set at build time (written into `/prop.default`). It defaults to `1` on `-user` builds, and
`0` for other build variants. The value is overridable via `PRODUCT_DEFAULT_PROPERTY_OVERRIDES`.
+
+Localization of the background texts
+------------------------------------
+
+The recovery image supports localization of several background texts, e.g. installing, error,
+factory reset warnings, etc. For devices using `xxhdpi` and `xxxhdpi`, the build system generates
+these localization images dynamically since android-10 when building the recovery image. While
+the static images under res-*dpi/images/ is used for other display resolutions and as a
+backup.
+
+Check the invocation of the image_generator tool in the [makefile]. And the detailed usage of the
+image_generator is documented [here](./tools/image_generator/README.md).
+
+[makefile]: https://android.googlesource.com/platform/build/+/refs/heads/master/core/Makefile#1800