doc: bitbake-user-manual: conf.py: add more extlinks

Message ID 20211215162227.2001656-1-michael.opdenacker@bootlin.com
State New
Headers show
Series doc: bitbake-user-manual: conf.py: add more extlinks | expand

Commit Message

Michael Opdenacker Dec. 15, 2021, 4:22 p.m. UTC
Useful in particular to refer to files in git repositories

Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
---
 doc/conf.py | 6 ++++++
 1 file changed, 6 insertions(+)

Patch

diff --git a/doc/conf.py b/doc/conf.py
index fc2ee081..b2369e82 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -36,7 +36,13 @@  author = 'Richard Purdie, Chris Larson, and Phil Blundell'
 # external links and substitutions
 extlinks = {
     'yocto_docs': ('https://docs.yoctoproject.org%s', None),
+    'yocto_git': ('https://git.yoctoproject.org/cgit/cgit.cgi%s', None),
+    'oe_home': ('https://www.openembedded.org%s', None),
     'oe_lists': ('https://lists.openembedded.org%s', None),
+    'oe_git': ('https://git.openembedded.org%s', None),
+    'oe_wiki': ('https://www.openembedded.org/wiki%s', None),
+    'oe_layerindex': ('https://layers.openembedded.org%s', None),
+    'oe_layer': ('https://layers.openembedded.org/layerindex/branch/master/layer%s', None),
 }
 
 # -- General configuration ---------------------------------------------------