Skip to content

Commit 34f9fec

Browse files
dbkinderwenlingz
authored andcommitted
doc: simplify navigation with restored doc org
A few more tweaks to the site navigation since we moved the content back to its original folder structure. Remove the temporary "doc reorg in progress" banner. Add reference to hardware in the "try" section. Add link to the documentation home page in left nav pane. Add additional redirects to handle external links to moved content. Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
1 parent f88348e commit 34f9fec

File tree

9 files changed

+106
-99
lines changed

9 files changed

+106
-99
lines changed

doc/conf.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,9 @@ def setup(app):
311311
# URLs must be relative to document root (with NO leading slash),
312312
# and without the html extension)
313313
html_redirect_pages = [
314-
('developer-guides/index', 'contribute/index'),
315-
('getting-started/index', 'try/index'),
316-
('user-guides/index', 'develop/index'),
314+
('developer-guides/index', 'contribute'),
315+
('getting-started/index', 'try'),
316+
('user-guides/index', 'develop'),
317+
('hardware', 'reference/hardware'),
317318
('release_notes', 'release_notes/index')
318319
]

doc/contribute/index.rst renamed to doc/contribute.rst

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ also find details about specific architecture topics.
1818
.. toctree::
1919
:maxdepth: 1
2020

21-
../developer-guides/modularity
22-
../developer-guides/hld/index
23-
../developer-guides/sw_design_guidelines
24-
../developer-guides/GVT-g-porting
25-
../developer-guides/trusty
26-
../developer-guides/l1tf
27-
../developer-guides/VBSK-analysis
21+
developer-guides/modularity
22+
developer-guides/hld/index
23+
developer-guides/sw_design_guidelines
24+
developer-guides/GVT-g-porting
25+
developer-guides/trusty
26+
developer-guides/l1tf
27+
developer-guides/VBSK-analysis
2828

2929

3030
Contributing Documents
@@ -39,8 +39,8 @@ the project.
3939
.. toctree::
4040
:maxdepth: 1
4141

42-
../developer-guides/contribute_guidelines
43-
../developer-guides/coding_guidelines
44-
../developer-guides/doc_guidelines
45-
../developer-guides/graphviz
46-
../tutorials/docbuild.rst
42+
developer-guides/contribute_guidelines
43+
developer-guides/coding_guidelines
44+
developer-guides/doc_guidelines
45+
developer-guides/graphviz
46+
tutorials/docbuild

doc/develop.rst

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
.. _develop_acrn:
2+
3+
Develop using ACRN
4+
##################
5+
6+
.. toctree::
7+
:maxdepth: 1
8+
9+
user-guides/acrn-shell
10+
user-guides/kernel-parameters
11+
user-guides/acrn-dm-parameters
12+
user-guides/tools
13+
14+
Selecting OS as a User VM
15+
*************************
16+
17+
.. toctree::
18+
:maxdepth: 1
19+
20+
tutorials/using_agl_as_uos
21+
tutorials/using_celadon_as_uos
22+
tutorials/building_uos_from_clearlinux
23+
tutorials/using_ubuntu_as_sos
24+
tutorials/using_vxworks_as_uos
25+
tutorials/using_windows_as_uos
26+
27+
Real time OS setup as User VM
28+
*****************************
29+
30+
.. toctree::
31+
:maxdepth: 1
32+
33+
tutorials/rt_linux
34+
tutorials/using_zephyr_as_uos
35+
36+
Tuning and debugging
37+
********************
38+
39+
.. toctree::
40+
:maxdepth: 1
41+
42+
tutorials/acrn-dm_QoS
43+
tutorials/debug
44+
tutorials/increase-uos-disk-size
45+
tutorials/open_vswitch
46+
tutorials/rtvm_workload_design_guideline
47+
tutorials/sgx_virtualization
48+
tutorials/sign_clear_linux_image
49+
tutorials/skl-nuc
50+
tutorials/static-ip
51+
tutorials/using_cat_on_up2
52+
tutorials/using_partition_mode_on_nuc
53+
tutorials/using_partition_mode_on_up2
54+
tutorials/using_sbl_on_up2
55+
56+
Other topics
57+
************
58+
59+
.. toctree::
60+
:maxdepth: 1
61+
62+
tutorials/agl-vms
63+
tutorials/trustyACRN

doc/develop/index.rst

Lines changed: 0 additions & 63 deletions
This file was deleted.

doc/index.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,11 @@ license.
7373
:maxdepth: 1
7474
:hidden:
7575

76-
learn/index
77-
try/index
78-
develop/index
79-
contribute/index
76+
Documentation Home <self>
77+
learn
78+
try
79+
develop
80+
contribute
8081
reference/index
8182
release_notes/index
8283
faq

doc/learn.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.. _learn_acrn:
2+
3+
Learn about ACRN
4+
################
5+
6+
ACRN is supported on Apollo Lake and Kaby Lake Intel platforms,
7+
as described in :ref:`hardware`.
8+
9+
.. toctree::
10+
:maxdepth: 1
11+
12+
introduction/index
13+

doc/learn/index.rst

Lines changed: 0 additions & 10 deletions
This file was deleted.

doc/static/acrn-custom.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
max-width: none;
66
}
77

8-
/* (temporarily) add an under development tagline to the bread crumb */
8+
/* (temporarily) add an under development tagline to the bread crumb
99
.wy-breadcrumbs::after {
1010
content: " (Content reorganization in progress)";
1111
background-color: #FFFACD;
1212
color: red;
1313
font-weight: bold;
1414
}
15-
/* */
15+
*/
1616

1717
/* pygments tweak for white-on-black console */
1818

doc/try/index.rst renamed to doc/try.rst

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@ hypervisor and the `Clear Linux`_ Service OS and Guest OS on the Intel
1111

1212
.. _Clear Linux: https://clearlinux.org
1313

14-
ACRN development is currently supported on Apollo Lake Intel platforms,
15-
described in :ref:`hardware`. Follow the setup guides listed here:
14+
ACRN is supported on Apollo Lake and Kaby Lake Intel platforms,
15+
as described in :ref:`hardware`.
16+
17+
Follow these getting started guides to give ACRN a try:
1618

1719
.. toctree::
1820
:maxdepth: 1
1921

20-
../getting-started/apl-nuc.rst
21-
../getting-started/up2.rst
22-
../getting-started/building-from-source.rst
22+
getting-started/apl-nuc
23+
getting-started/up2
24+
getting-started/building-from-source

0 commit comments

Comments
 (0)