diff options
author | Juan José García-Castro Crespo <jjgcc@posteo.net> | 2024-02-25 18:02:16 +0000 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2024-02-26 14:58:37 +0000 |
commit | 6d1560f05d2ebaf80d4486a21c23524a234aaa08 (patch) | |
tree | f1a56401160317535a73c975218a07578c11dee3 | |
parent | 5ff6bf30d8bc08eb2b8e0542d31610d94023b6dd (diff) |
Documentation/tutorial/part1.md: Install libssl-dev and pkg-config on Debian
Missing pkg-config and libcrypto when building coreboot (Step 6) on
Debian 12 (bookworm). Add required packages to Step 1, libssl-dev and
pkg-config.
Change-Id: I5df06611a934d1ef85c8335764f4f6e0f241c9a9
Signed-off-by: Juan José García-Castro Crespo <jjgcc@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/80722
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | Documentation/tutorial/part1.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Documentation/tutorial/part1.md b/Documentation/tutorial/part1.md index 0b2791f5d2..041c7f41fa 100644 --- a/Documentation/tutorial/part1.md +++ b/Documentation/tutorial/part1.md @@ -29,8 +29,8 @@ Download, configure, and build coreboot ### Step 1 - Install tools and libraries needed for coreboot Debian based distros: -`sudo apt-get install -y bison build-essential curl flex git gnat` -`libncurses5-dev m4 zlib1g-dev` +`sudo apt-get install -y bison build-essential curl flex git gnat +libncurses5-dev libssl-dev m4 zlib1g-dev pkg-config` Arch based distros: `sudo pacman -S base-devel curl git gcc-ada ncurses zlib` @@ -206,6 +206,8 @@ of the installed packages: * `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. +* `libssl-dev, pkg-config` are needed to build coreboot image (Step 6). +In particular, `libcrypto` provided by `libssl-dev` package. If you started with a different distribution or package management system you might need to install other packages. Most likely they are |