Skip to content

Commit

Permalink
Merge branch 'master' into publish
Browse files Browse the repository at this point in the history
  • Loading branch information
deb-intel committed Apr 1, 2024
2 parents d7a3204 + 97e7339 commit ae73da5
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
Empty file.
2 changes: 1 addition & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
# |version| and |release|, also used in various other places throughout the
# built documents.

version = release = "2.8.0"
version = release = "2.9.0"

#
# The short X.Y version.
Expand Down
22 changes: 15 additions & 7 deletions getting_started/setup_linux/setup_ktest_environment.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,16 +58,24 @@ Set up a target
sudo emacs /etc/default/grub

b) Change ``GRUB_DEFAULT=[n]`` to ``GRUB_DEFAULT=saved``.

c) Add ``GRUB_DISABLE_SUBMENU=y`` to the end of the file and save it.

This step is necessary because submenus confuse ktest.
c) You must disable GRUB submenus because they confuse ktest:

.. code-block:: console
echo 'GRUB_DISABLE_SUBMENU=y' | sudo tee -a /etc/default/grub.d/disable-submenu.cfg

d) Update the grub configuration.

.. code-block:: console
sudo update-grub
# Better safe than _very_ sorry
sudo cp /boot/grub/grub.cfg /boot/grub/saved_grub.cfg

sudo update-grub

# Make sure submenus are actually disabled
grep submenu /boot/grub/grub.cfg

#. Set the default kernel.

Expand All @@ -84,7 +92,7 @@ Set up a target
# Print your currently booted (and known-safe) option
cat /proc/cmdline
# List the grub entries
awk '/^menuentry/ { print i++, '\t', $0 }' /boot/grub/grub.cfg
awk '/^menuentry|submenu/ { print i++, '\t', $0 }' /boot/grub/grub.cfg
# Find the entry that matches the output of the
# first command you ran, and take note of its number
sudo grub-set-default [n] # Where [n] is that number
Expand Down Expand Up @@ -135,7 +143,7 @@ Set up a target
#=> saved_entry=6
# Show all, numbered kernel choices without (re)booting
awk '/^menuentry/ { print i++, '\t', $0 }' /boot/grub/grub.cfg
awk '/^menuentry|submenu/ { print i++, '\t', $0 }' /boot/grub/grub.cfg
#=> 5 menuentry ...
#=> 6 menuentry 'Ubuntu, with Linux 5.4.0-53-generic' --class ubuntu ...
#=> 7 menuentry ...
Expand Down
2 changes: 1 addition & 1 deletion release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ kernel, and documentation. Download the source code as a zip or tar.gz file:
Source and Binary Releases
--------------------------

The latest SOF release is v2.8.0 (Dec 2023).
The latest SOF release is v2.9.0 (Mar 2024).

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

0 comments on commit ae73da5

Please sign in to comment.