summaryrefslogtreecommitdiff
path: root/plugins/bootimg/python/module.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/bootimg/python/module.c')
-rw-r--r--plugins/bootimg/python/module.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/plugins/bootimg/python/module.c b/plugins/bootimg/python/module.c
index ee36ecf..db44d14 100644
--- a/plugins/bootimg/python/module.c
+++ b/plugins/bootimg/python/module.c
@@ -54,12 +54,21 @@ bool add_format_bootimg_module_to_python_module(void)
PyObject *super; /* Module à compléter */
PyObject *module; /* Sous-module mis en place */
+#define BOOTIMG_MODULE_DOC \
+ "The boot image is part of the Android boot process.\n" \
+ "\n" \
+ "It mostly contains the Linux kernel and the early startup tools," \
+ " and the recovery helpers as well.\n" \
+ "\n" \
+ "Its whole content is documented at:" \
+ " https://source.android.com/devices/bootloader/boot-image-header"
+
static PyModuleDef py_chrysalide_bootimg_module = {
.m_base = PyModuleDef_HEAD_INIT,
.m_name = "pychrysalide.format.bootimg",
- .m_doc = "Python module for Chrysalide.format.bootimg",
+ .m_doc = BOOTIMG_MODULE_DOC,
.m_size = -1,