Skip to content

Commit 2484feb

Browse files
committed
1 parent 7378574 commit 2484feb

File tree

174 files changed

+540
-524
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

174 files changed

+540
-524
lines changed

.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: b5464984684d3af54eda5991343e6af5
3+
config: 639b9f3790a70101287c271f9603b707
44
tags: 455402b8c6ae3b40507137c0330c28d2

latest/_sources/getting_started/setup_linux/setup_ktest_environment.rst.txt

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,24 @@ Set up a target
5858
sudo emacs /etc/default/grub
5959

6060
b) Change ``GRUB_DEFAULT=[n]`` to ``GRUB_DEFAULT=saved``.
61-
62-
c) Add ``GRUB_DISABLE_SUBMENU=y`` to the end of the file and save it.
6361

64-
This step is necessary because submenus confuse ktest.
62+
c) You must disable GRUB submenus because they confuse ktest:
63+
64+
.. code-block:: console
65+
66+
echo 'GRUB_DISABLE_SUBMENU=y' | sudo tee -a /etc/default/grub.d/disable-submenu.cfg
6567

6668
d) Update the grub configuration.
6769

6870
.. code-block:: console
69-
70-
sudo update-grub
71+
72+
# Better safe than _very_ sorry
73+
sudo cp /boot/grub/grub.cfg /boot/grub/saved_grub.cfg
74+
75+
sudo update-grub
76+
77+
# Make sure submenus are actually disabled
78+
grep submenu /boot/grub/grub.cfg
7179

7280
#. Set the default kernel.
7381

@@ -84,7 +92,7 @@ Set up a target
8492
# Print your currently booted (and known-safe) option
8593
cat /proc/cmdline
8694
# List the grub entries
87-
awk '/^menuentry/ { print i++, '\t', $0 }' /boot/grub/grub.cfg
95+
awk '/^menuentry|submenu/ { print i++, '\t', $0 }' /boot/grub/grub.cfg
8896
# Find the entry that matches the output of the
8997
# first command you ran, and take note of its number
9098
sudo grub-set-default [n] # Where [n] is that number
@@ -135,7 +143,7 @@ Set up a target
135143
#=> saved_entry=6
136144
137145
# Show all, numbered kernel choices without (re)booting
138-
awk '/^menuentry/ { print i++, '\t', $0 }' /boot/grub/grub.cfg
146+
awk '/^menuentry|submenu/ { print i++, '\t', $0 }' /boot/grub/grub.cfg
139147
#=> 5 menuentry ...
140148
#=> 6 menuentry 'Ubuntu, with Linux 5.4.0-53-generic' --class ubuntu ...
141149
#=> 7 menuentry ...

latest/_sources/release.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ kernel, and documentation. Download the source code as a zip or tar.gz file:
2626
Source and Binary Releases
2727
--------------------------
2828

29-
The latest SOF release is v2.8.0 (Dec 2023).
29+
The latest SOF release is v2.9.0 (Mar 2024).
3030

3131
View new feature information and release downloads for the latest and
3232
previous releases on GitHub. Firmware and SDK tool source code and binary

latest/_static/documentation_options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const DOCUMENTATION_OPTIONS = {
2-
VERSION: '2.8.0',
2+
VERSION: '2.9.0',
33
LANGUAGE: 'en',
44
COLLAPSE_INDEX: false,
55
BUILDER: 'html',

latest/algos/demux/demux.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Multiplexer/Demultiplexer &mdash; SOF Project 2.8.0 documentation</title>
7+
<title>Multiplexer/Demultiplexer &mdash; SOF Project 2.9.0 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=fa44fd50" />
99
<link rel="stylesheet" type="text/css" href="../../_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="../../_static/graphviz.css?v=eafc0fe6" />
@@ -16,7 +16,7 @@
1616
<script src="../../_static/js/html5shiv.min.js"></script>
1717
<![endif]-->
1818

19-
<script src="../../_static/documentation_options.js?v=69ff2ef9"></script>
19+
<script src="../../_static/documentation_options.js?v=182a64a0"></script>
2020
<script src="../../_static/doctools.js?v=888ff710"></script>
2121
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
2222
<script src="../../_static/js/theme.js"></script>
@@ -1407,7 +1407,7 @@ <h3>ALSA control<a class="headerlink" href="#alsa-control" title="Link to this h
14071407

14081408
<div role="contentinfo">
14091409
<p>&#169; Copyright 2024, SOF Project.
1410-
<span class="lastupdated">Last updated on Mar 27, 2024.
1410+
<span class="lastupdated">Last updated on Apr 01, 2024.
14111411
</span></p>
14121412
</div>
14131413

latest/algos/eq/equalizers_tuning.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Equalizers, IIR and FIR &mdash; SOF Project 2.8.0 documentation</title>
7+
<title>Equalizers, IIR and FIR &mdash; SOF Project 2.9.0 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=fa44fd50" />
99
<link rel="stylesheet" type="text/css" href="../../_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="../../_static/graphviz.css?v=eafc0fe6" />
@@ -16,7 +16,7 @@
1616
<script src="../../_static/js/html5shiv.min.js"></script>
1717
<![endif]-->
1818

19-
<script src="../../_static/documentation_options.js?v=69ff2ef9"></script>
19+
<script src="../../_static/documentation_options.js?v=182a64a0"></script>
2020
<script src="../../_static/doctools.js?v=888ff710"></script>
2121
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
2222
<script src="../../_static/js/theme.js"></script>
@@ -2155,7 +2155,7 @@ <h2><a class="toc-backref" href="#id38" role="doc-backlink">References</a><a cla
21552155

21562156
<div role="contentinfo">
21572157
<p>&#169; Copyright 2024, SOF Project.
2158-
<span class="lastupdated">Last updated on Mar 27, 2024.
2158+
<span class="lastupdated">Last updated on Apr 01, 2024.
21592159
</span></p>
21602160
</div>
21612161

latest/algos/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Algorithms &mdash; SOF Project 2.8.0 documentation</title>
7+
<title>Algorithms &mdash; SOF Project 2.9.0 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
99
<link rel="stylesheet" type="text/css" href="../_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css?v=eafc0fe6" />
@@ -16,7 +16,7 @@
1616
<script src="../_static/js/html5shiv.min.js"></script>
1717
<![endif]-->
1818

19-
<script src="../_static/documentation_options.js?v=69ff2ef9"></script>
19+
<script src="../_static/documentation_options.js?v=182a64a0"></script>
2020
<script src="../_static/doctools.js?v=888ff710"></script>
2121
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
2222
<script src="../_static/js/theme.js"></script>
@@ -1414,7 +1414,7 @@ <h2>Algorithm Specific Information<a class="headerlink" href="#algorithm-specifi
14141414

14151415
<div role="contentinfo">
14161416
<p>&#169; Copyright 2024, SOF Project.
1417-
<span class="lastupdated">Last updated on Mar 27, 2024.
1417+
<span class="lastupdated">Last updated on Apr 01, 2024.
14181418
</span></p>
14191419
</div>
14201420

latest/algos/src/sample_rate_conversion.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Sample Rate Conversion &mdash; SOF Project 2.8.0 documentation</title>
7+
<title>Sample Rate Conversion &mdash; SOF Project 2.9.0 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=fa44fd50" />
99
<link rel="stylesheet" type="text/css" href="../../_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="../../_static/graphviz.css?v=eafc0fe6" />
@@ -16,7 +16,7 @@
1616
<script src="../../_static/js/html5shiv.min.js"></script>
1717
<![endif]-->
1818

19-
<script src="../../_static/documentation_options.js?v=69ff2ef9"></script>
19+
<script src="../../_static/documentation_options.js?v=182a64a0"></script>
2020
<script src="../../_static/doctools.js?v=888ff710"></script>
2121
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
2222
<script src="../../_static/js/theme.js"></script>
@@ -1703,7 +1703,7 @@ <h2>References<a class="headerlink" href="#references" title="Link to this headi
17031703

17041704
<div role="contentinfo">
17051705
<p>&#169; Copyright 2024, SOF Project.
1706-
<span class="lastupdated">Last updated on Mar 27, 2024.
1706+
<span class="lastupdated">Last updated on Apr 01, 2024.
17071707
</span></p>
17081708
</div>
17091709

latest/algos/tdfb/time_domain_fixed_beamformer.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Time Domain Fixed Beamformer (TDFB) &mdash; SOF Project 2.8.0 documentation</title>
7+
<title>Time Domain Fixed Beamformer (TDFB) &mdash; SOF Project 2.9.0 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=fa44fd50" />
99
<link rel="stylesheet" type="text/css" href="../../_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="../../_static/graphviz.css?v=eafc0fe6" />
@@ -16,7 +16,7 @@
1616
<script src="../../_static/js/html5shiv.min.js"></script>
1717
<![endif]-->
1818

19-
<script src="../../_static/documentation_options.js?v=69ff2ef9"></script>
19+
<script src="../../_static/documentation_options.js?v=182a64a0"></script>
2020
<script src="../../_static/doctools.js?v=888ff710"></script>
2121
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
2222
<script async="async" src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
@@ -1807,7 +1807,7 @@ <h2><a class="toc-backref" href="#id30" role="doc-backlink">Simulation</a><a cla
18071807

18081808
<div role="contentinfo">
18091809
<p>&#169; Copyright 2024, SOF Project.
1810-
<span class="lastupdated">Last updated on Mar 27, 2024.
1810+
<span class="lastupdated">Last updated on Apr 01, 2024.
18111811
</span></p>
18121812
</div>
18131813

latest/api/audio-stream-api.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" />
55

66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Audio Stream API &mdash; SOF Project 2.8.0 documentation</title>
7+
<title>Audio Stream API &mdash; SOF Project 2.9.0 documentation</title>
88
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=fa44fd50" />
99
<link rel="stylesheet" type="text/css" href="../_static/css/theme.css?v=19f00094" />
1010
<link rel="stylesheet" type="text/css" href="../_static/graphviz.css?v=eafc0fe6" />
@@ -16,7 +16,7 @@
1616
<script src="../_static/js/html5shiv.min.js"></script>
1717
<![endif]-->
1818

19-
<script src="../_static/documentation_options.js?v=69ff2ef9"></script>
19+
<script src="../_static/documentation_options.js?v=182a64a0"></script>
2020
<script src="../_static/doctools.js?v=888ff710"></script>
2121
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
2222
<script src="../_static/js/theme.js"></script>
@@ -2355,7 +2355,7 @@
23552355

23562356
<div role="contentinfo">
23572357
<p>&#169; Copyright 2024, SOF Project.
2358-
<span class="lastupdated">Last updated on Mar 27, 2024.
2358+
<span class="lastupdated">Last updated on Apr 01, 2024.
23592359
</span></p>
23602360
</div>
23612361

0 commit comments

Comments
 (0)