diff options
author | Tom Rini <trini@konsulko.com> | 2022-08-13 07:37:48 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-08-13 07:37:48 -0400 |
commit | 20d4c6052fe5826b3421e86b2f0e76a6c22581a7 (patch) | |
tree | b11d7fc88bcabb8aac89bda03e30c1af40eab613 /tools/binman/entry.py | |
parent | 8f9eee8275cf475f6d9435e85aa2d04b61b3cd75 (diff) | |
parent | 046d7a0bb1b383fe14bfe950b91ce2e20f835bd4 (diff) |
Merge tag 'efi-2022-10-rc3' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2022-10-rc3
Documentation:
* Add HTML documentation for patman
* Improve binman documentation
* Man-page for gpio
UEFI:
* move udevice pointer into struct efi_object
* fix efi_convert_device_path_to_text()
Other:
* fs/erofs: silence messages from erofs_probe()
Diffstat (limited to 'tools/binman/entry.py')
-rw-r--r-- | tools/binman/entry.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/binman/entry.py b/tools/binman/entry.py index a07a5888643..e3767aefa73 100644 --- a/tools/binman/entry.py +++ b/tools/binman/entry.py @@ -750,6 +750,11 @@ features to produce new behaviours. first_line = lines[0] rest = [line[4:] for line in lines[1:]] hdr = 'Entry: %s: %s' % (name.replace('_', '-'), first_line) + + # Create a reference for use by rST docs + ref_name = f'etype_{module.__name__[6:]}'.lower() + print('.. _%s:' % ref_name) + print() print(hdr) print('-' * len(hdr)) print('\n'.join(rest)) |