diff mbox series

[U-Boot,RFC,1/9] doc: Move existing rst files into api sub-directory

Message ID 1563295374-1504-2-git-send-email-bmeng.cn@gmail.com
State RFC
Delegated to: Tom Rini
Headers show
Series Initial layout for Sphinx HTML docs | expand

Commit Message

Bin Meng July 16, 2019, 4:42 p.m. UTC
Currently the Sphinx doc only contains API descriptions of several
U-Boot subsystems. For future extension, group these existing docs
into an API sub-directory.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---

 doc/{ => api}/efi.rst          |  3 +++
 doc/api/index.rst              | 10 ++++++++++
 doc/{ => api}/linker_lists.rst |  3 +++
 doc/{ => api}/serial.rst       |  3 +++
 doc/index.rst                  | 14 +++++++++++---
 5 files changed, 30 insertions(+), 3 deletions(-)
 rename doc/{ => api}/efi.rst (92%)
 create mode 100644 doc/api/index.rst
 rename doc/{ => api}/linker_lists.rst (99%)
 rename doc/{ => api}/serial.rst (80%)

Comments

Heinrich Schuchardt July 16, 2019, 6:03 p.m. UTC | #1
On 7/16/19 6:42 PM, Bin Meng wrote:
> Currently the Sphinx doc only contains API descriptions of several
> U-Boot subsystems. For future extension, group these existing docs
> into an API sub-directory.
>
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>

Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Heinrich Schuchardt July 16, 2019, 11:43 p.m. UTC | #2
On 7/16/19 8:03 PM, Heinrich Schuchardt wrote:
> On 7/16/19 6:42 PM, Bin Meng wrote:
>> Currently the Sphinx doc only contains API descriptions of several
>> U-Boot subsystems. For future extension, group these existing docs
>> into an API sub-directory.
>>
>> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
>
> Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
>

Hello Bin,

efi_loader: add more sources to Sphinx documentation
https://lists.denx.de/pipermail/u-boot/2019-July/376382.html
https://patchwork.ozlabs.org/patch/1131726/

This patch may lead to a merge conflict.

If you resubmit, consider rebasing on it.

Best regards

Heinrich
Bin Meng July 17, 2019, 1:29 a.m. UTC | #3
Hi Heinrich,

On Wed, Jul 17, 2019 at 7:43 AM Heinrich Schuchardt <xypron.glpk@gmx.de> wrote:
>
> On 7/16/19 8:03 PM, Heinrich Schuchardt wrote:
> > On 7/16/19 6:42 PM, Bin Meng wrote:
> >> Currently the Sphinx doc only contains API descriptions of several
> >> U-Boot subsystems. For future extension, group these existing docs
> >> into an API sub-directory.
> >>
> >> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> >
> > Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
> >
>
> Hello Bin,
>
> efi_loader: add more sources to Sphinx documentation
> https://lists.denx.de/pipermail/u-boot/2019-July/376382.html
> https://patchwork.ozlabs.org/patch/1131726/
>
> This patch may lead to a merge conflict.
>
> If you resubmit, consider rebasing on it.

Thanks for the review. I will rebase on that when I resubmit this series.

Regards,
Bin
diff mbox series

Patch

diff --git a/doc/efi.rst b/doc/api/efi.rst
similarity index 92%
rename from doc/efi.rst
rename to doc/api/efi.rst
index 5337a55..3b2d544 100644
--- a/doc/efi.rst
+++ b/doc/api/efi.rst
@@ -1,5 +1,8 @@ 
 .. SPDX-License-Identifier: GPL-2.0+
 
+.. toctree::
+   :maxdepth: 2
+
 EFI subsystem
 =============
 
diff --git a/doc/api/index.rst b/doc/api/index.rst
new file mode 100644
index 0000000..8e1e1a1
--- /dev/null
+++ b/doc/api/index.rst
@@ -0,0 +1,10 @@ 
+========================
+U-Boot API documentation
+========================
+
+.. toctree::
+   :maxdepth: 2
+
+   efi
+   linker_lists
+   serial
diff --git a/doc/linker_lists.rst b/doc/api/linker_lists.rst
similarity index 99%
rename from doc/linker_lists.rst
rename to doc/api/linker_lists.rst
index 72f514e..477bbae 100644
--- a/doc/linker_lists.rst
+++ b/doc/api/linker_lists.rst
@@ -1,5 +1,8 @@ 
 .. SPDX-License-Identifier: GPL-2.0+
 
+.. toctree::
+   :maxdepth: 2
+
 Linker-Generated Arrays
 =======================
 
diff --git a/doc/serial.rst b/doc/api/serial.rst
similarity index 80%
rename from doc/serial.rst
rename to doc/api/serial.rst
index ed34e59..65f10d3 100644
--- a/doc/serial.rst
+++ b/doc/api/serial.rst
@@ -1,5 +1,8 @@ 
 .. SPDX-License-Identifier: GPL-2.0+
 
+.. toctree::
+   :maxdepth: 2
+
 Serial system
 =============
 
diff --git a/doc/index.rst b/doc/index.rst
index 0353c10..1946d09 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -4,8 +4,16 @@ 
 U-Boot Developer Manual
 #######################
 
+U-Boot API documentation
+------------------------
+
+These books get into the details of how specific U-Boot subsystems work
+from the point of view of a U-Boot developer.  Much of the information here
+is taken directly from the U-Boot source, with supplemental material added
+as needed (or at least as we managed to add it - probably *not* all that is
+needed).
+
 .. toctree::
+   :maxdepth: 2
 
-   efi
-   linker_lists
-   serial
+   api/index