
On Wed, 15 Jan 2020 at 06:50, Sam Protsenko joe.skb7@gmail.com wrote:
Convert Android documentation from regular txt format to Sphinx (RST). Also add Android index.rst file and reference it in root index.rst, so that Android documentation is visible.
Test:
$ make htmldocs $ xdg-open doc/output/index.html
Signed-off-by: Sam Protsenko joe.skb7@gmail.com
MAINTAINERS | 4 +- cmd/Kconfig | 2 +- doc/android/{ab.txt => ab.rst} | 39 ++--- doc/android/avb2.rst | 133 ++++++++++++++++++ doc/android/avb2.txt | 115 --------------- doc/android/bcb.rst | 100 +++++++++++++ doc/android/bcb.txt | 89 ------------ ...oot-protocol.txt => fastboot-protocol.rst} | 45 +++--- doc/android/{fastboot.txt => fastboot.rst} | 92 ++++++------ doc/android/index.rst | 14 ++ doc/index.rst | 12 ++ test/py/tests/test_android/test_avb.py | 2 +- 12 files changed, 351 insertions(+), 296 deletions(-) rename doc/android/{ab.txt => ab.rst} (52%) create mode 100644 doc/android/avb2.rst delete mode 100644 doc/android/avb2.txt create mode 100644 doc/android/bcb.rst delete mode 100644 doc/android/bcb.txt rename doc/android/{fastboot-protocol.txt => fastboot-protocol.rst} (82%) rename doc/android/{fastboot.txt => fastboot.rst} (79%) create mode 100644 doc/android/index.rst
Reviewed-by: Simon Glass sjg@chromium.org