-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Support SoC and board extensions #72857
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
1a73051
78420aa
23e3888
43031b7
75d0086
15e95a6
f99f777
37fba9a
c145817
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -91,7 +91,7 @@ def kconfig_load(app: Sphinx) -> Tuple[kconfiglib.Kconfig, Dict[str, str]]: | |||||
| root_args = argparse.Namespace(**{'soc_roots': [Path(ZEPHYR_BASE)]}) | ||||||
| v2_systems = list_hardware.find_v2_systems(root_args) | ||||||
|
|
||||||
| soc_folders = {soc.folder for soc in v2_systems.get_socs()} | ||||||
| soc_folders = {soc.folder[0] for soc in v2_systems.get_socs()} | ||||||
|
||||||
| soc_folders = {soc.folder[0] for soc in v2_systems.get_socs()} | |
| soc_folders = {folder for soc in v2_systems.get_socs() for folder in soc.folder} |
Same with the occurrences of board.dir[0].
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that depends on how we want to organize the docs in such case.
Will we want docs describing the in-tree soc / board to be located in a single folder, or do we want to allow documentation for a given soc / board to be placed at multiple locations.
I would like to leave such decision to doc maintainers and not as part of this PR.
@kartben thoughts ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, I would agree that the docs can be handled later, same with compliance.
Uh oh!
There was an error while loading. Please reload this page.