diff options
author | Daniel R. Franzini <danielt3@usp.br> | 2023-05-01 03:07:09 -0300 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2023-05-02 12:41:52 +0000 |
commit | def14b60f1a3d7385bb2956d787be7bed819c610 (patch) | |
tree | 77b96e02b8b3d1083283c7ff6f02efe2393b0ae0 | |
parent | 65b64b3f03b74b418bdfc8e21fbd6a4a30ca2be4 (diff) |
doc/tutorial/part1.md: Fix package name to install qemu on Debian
Fix package name to install qemu on Debian. It used to be 'qemu'
only but it is now called 'qemu-system'.
Signed-off-by: Daniel R. Franzini <danielt3@usp.br>
Change-Id: Ibae9031a3e397925db95b7283fa8c6573f6d5858
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74894
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Sean Rhodes <sean@starlabs.systems>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
-rw-r--r-- | Documentation/tutorial/part1.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/tutorial/part1.md b/Documentation/tutorial/part1.md index 13d6478b95..9315b1babc 100644 --- a/Documentation/tutorial/part1.md +++ b/Documentation/tutorial/part1.md @@ -147,7 +147,7 @@ Test the image using QEMU ### Step 7 - Install QEMU -* Debian: `sudo apt-get install -y qemu` +* Debian: `sudo apt-get install -y qemu-system` * Arch: `sudo pacman -S qemu` * Redhat: `sudo dnf install qemu` |