@@ -60,6 +60,8 @@ admin-guide/
- info related to Linux users and system admins.
aoe/
- description of AoE (ATA over Ethernet) along with config examples.
+arch-guide/
+ - info related to architecture-specific code.
arm/
- directory with info about Linux on the ARM architecture.
arm64/
new file mode 100644
@@ -0,0 +1,10 @@
+# -*- coding: utf-8; mode: python -*-
+
+project = 'Linux Kernel architecture-specific Documentation'
+
+tags.add("subproject")
+
+latex_documents = [
+ ('index', 'Linux Kernel architecture-specific Documentation',
+ 'The kernel development community', 'manual'),
+]
new file mode 100644
@@ -0,0 +1,14 @@
+The Linux kernel architecture-specific documentation
+====================================================
+
+The following is a collection of architecture-specific documentation for the
+different architectures that the kernel supports.
+
+SuperH
+------
+
+.. toctree::
+ :maxdepth: 1
+
+ ../sh/interfaces.rst
+
@@ -60,6 +60,17 @@ needed).
sound/index
crypto/index
+Architecture-specific documentation
+-----------------------------------
+
+These documents get into the details of architecture-specific code or
+interfaces.
+
+.. toctree::
+ :maxdepth: 2
+
+ arch-guide/index
+
Korean translations
-------------------
Add the new SuperH interfaces RST into the documentation tree by adding a new arch-guide. Signed-off-by: Steve Kowalik <steven@wedontsleep.org> --- Documentation/00-INDEX | 2 ++ Documentation/arch-guide/conf.py | 10 ++++++++++ Documentation/arch-guide/index.rst | 14 ++++++++++++++ Documentation/index.rst | 11 +++++++++++ 4 files changed, 37 insertions(+) create mode 100644 Documentation/arch-guide/conf.py create mode 100644 Documentation/arch-guide/index.rst