diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2024-06-10 14:59:38 +0200 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2024-07-09 07:31:02 +0000 |
commit | 2c6c3dbdf8ff8812c505603b0b1afec435adc1db (patch) | |
tree | 1f561f4981ebb4d8152b719580432b6180e2da8f | |
parent | 055ec248a059c857a3477c9f83a265f7ff052ce4 (diff) |
Doc/tutorial/part1.md: Correct libncurses-dev pkg name for debian
Change-Id: I5a71b914d40a9ea45be87f4581ff0072605e8c00
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83032
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin L Roth <gaumless@gmail.com>
-rw-r--r-- | Documentation/tutorial/part1.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/tutorial/part1.md b/Documentation/tutorial/part1.md index eea2e1774b..229c8e2d66 100644 --- a/Documentation/tutorial/part1.md +++ b/Documentation/tutorial/part1.md @@ -30,7 +30,7 @@ Download, configure, and build coreboot Debian based distros: `sudo apt-get install -y bison build-essential curl flex git gnat -libncurses5-dev libssl-dev m4 zlib1g-dev pkg-config` +libncurses-dev libssl-dev m4 zlib1g-dev pkg-config` Arch based distros: `sudo pacman -S base-devel curl git gcc-ada ncurses zlib` @@ -202,7 +202,7 @@ of the installed packages: * `build-essential` or `base-devel` are the basic tools for building software. * `git` is needed to download coreboot from the coreboot git repository. -* `libncurses5-dev` or `ncurses` is needed to build the menu for 'make menuconfig' +* `libncurses-dev` or `ncurses` is needed to build the menu for 'make menuconfig' * `m4, bison, curl, flex, zlib1g-dev, gcc, gnat` and `g++` or `clang` are needed to build the coreboot toolchain. `gcc` and `gnat` have to be of the same version. |