diff options
author | Tom Rini <trini@konsulko.com> | 2020-05-11 14:23:23 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-05-11 14:23:23 -0400 |
commit | ac14bc41692a55d5b53f73a0a5b33de2424c2cb6 (patch) | |
tree | 9b4e0a28a7b27261c187573b87e4926e0fab795a /doc | |
parent | bb488ac34d9fbb892d870b0cbeabdbc5dc432653 (diff) | |
parent | bdb15776f6d93a1fe7902346db06a2a9fd43381e (diff) | |
download | u-boot-ac14bc41692a55d5b53f73a0a5b33de2424c2cb6.tar.gz u-boot-ac14bc41692a55d5b53f73a0a5b33de2424c2cb6.tar.bz2 u-boot-ac14bc41692a55d5b53f73a0a5b33de2424c2cb6.zip |
Merge tag 'efi-2020-07-rc2-4' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for efi-2020-07-rc2-4
This pull request comprises:
* bug fixes
* documentation fixes
* a new function to determine u16 string sizes and its unit test
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/efi.rst | 9 | ||||
-rw-r--r-- | doc/api/index.rst | 1 | ||||
-rw-r--r-- | doc/api/unicode.rst | 7 |
3 files changed, 17 insertions, 0 deletions
diff --git a/doc/api/efi.rst b/doc/api/efi.rst index 0667c3aef7..d5114f05b3 100644 --- a/doc/api/efi.rst +++ b/doc/api/efi.rst @@ -163,3 +163,12 @@ Unicode Collation protocol .. kernel-doc:: lib/efi_loader/efi_unicode_collation.c :internal: + +Unit testing +------------ + +The following library functions are provided to support writing UEFI unit tests. +The should not be used elsewhere. + +.. kernel-doc:: include/efi_selftest.h + :internal: diff --git a/doc/api/index.rst b/doc/api/index.rst index d484c066c5..2578abd40e 100644 --- a/doc/api/index.rst +++ b/doc/api/index.rst @@ -9,3 +9,4 @@ U-Boot API documentation efi linker_lists serial + unicode diff --git a/doc/api/unicode.rst b/doc/api/unicode.rst new file mode 100644 index 0000000000..3fb6745f84 --- /dev/null +++ b/doc/api/unicode.rst @@ -0,0 +1,7 @@ +.. SPDX-License-Identifier: GPL-2.0+ + +Unicode support +=============== + +.. kernel-doc:: include/charset.h + :internal: |