From eb717d259c4d3a8e3f36988c200772fdc8f2adda Mon Sep 17 00:00:00 2001 From: Judith Mendez Date: Thu, 28 Mar 2024 16:16:00 -0500 Subject: [PATCH 1/2] U-boot: UG-General-Info: Add host dependencies Add host dependencies for building TI u-boot (standalone). LCPD-37388 Signed-off-by: Judith Mendez --- .../U-Boot/UG-General-Info.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/source/linux/Foundational_Components/U-Boot/UG-General-Info.rst b/source/linux/Foundational_Components/U-Boot/UG-General-Info.rst index b860132e2..1fe48efdc 100644 --- a/source/linux/Foundational_Components/U-Boot/UG-General-Info.rst +++ b/source/linux/Foundational_Components/U-Boot/UG-General-Info.rst @@ -3,6 +3,19 @@ General Information ------------------- +.. ifconfig:: CONFIG_part_family not in ('General_family', 'AM335X_family', 'AM437X_family') + + .. rubric:: Install host dependencies + + To install host dependencies for building TI U-boot source (standalone) + on Ubuntu 22.04+, run the following command in the terminal prompt: + + .. code-block:: console + + sudo apt install git xz-utils build-essential autoconf flex bison libssl-dev bc libncurses-dev \ + python3 python3-setuptools python3-dev python3-yaml python3-jsonschema python3-pyelftools \ + swig yamllint + Getting the U-Boot Source Code ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ From 32013ebdda6f70cc7377c26d71b3ef3f58aa4bd7 Mon Sep 17 00:00:00 2001 From: Judith Mendez Date: Thu, 28 Mar 2024 16:17:02 -0500 Subject: [PATCH 2/2] Foundational_Components/Kernel/_Users_Guide: Add host dependencies Add host dependencies for building TI Linux kernel (standalone). LCPD-37389 Signed-off-by: Judith Mendez --- .../Foundational_Components/Kernel/_Users_Guide.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/source/linux/Foundational_Components/Kernel/_Users_Guide.rst b/source/linux/Foundational_Components/Kernel/_Users_Guide.rst index f0d7ba7f1..405166bee 100644 --- a/source/linux/Foundational_Components/Kernel/_Users_Guide.rst +++ b/source/linux/Foundational_Components/Kernel/_Users_Guide.rst @@ -7,6 +7,17 @@ Overview This document will cover the basic steps for building the Linux kernel. +.. ifconfig:: CONFIG_part_family not in ('General_family', 'AM335X_family', 'AM437X_family') + + .. rubric:: Install host dependencies + + To install host dependencies for building TI Linux kernel source (standalone) + on Ubuntu 22.04+, run the following command in the terminal prompt: + + .. code-block:: console + + sudo apt install git xz-utils build-essential flex bison bc libssl-dev libncurses-dev + Getting the Kernel Source Code ------------------------------