Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ further_reading:
link: https://www.kernel.org/doc/html/latest/
type: documentation
- resource:
title: arm_kernel_install_guide repository
title: Arm kernel build repository
link: https://github.com/geremyCohen/arm_kernel_install_guide
type: website

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
---
next_step_guidance: >
You have learned how to build custom Linux kernels on Arm cloud instances. You might be interested in learning how to optimize applications for Arm servers.

recommended_path: "/learning-paths/servers-and-cloud-computing/profiling-for-neoverse/"

### FIXED, DO NOT MODIFY THIS FILE.
weight: 21
layout: learningpathall
# ================================================================================
# FIXED, DO NOT MODIFY THIS FILE
# ================================================================================
weight: 21 # Set to always be larger than the content in this path to be at the end of the navigation.
title: "Next Steps" # Always the same, html page title.
layout: "learningpathall" # All files under learning paths have this same wrapper for Hugo processing.
---
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,10 @@ With your build instance running and accessible via SSH, install the required de

```bash
# These commands install the compilation toolchain, kernel build tools, and utilities needed for the build scripts.

sudo apt update
sudo apt install -y git python3 python3-pip python3-venv python-is-python3 build-essential bc rsync dwarves flex bison libssl-dev libelf-dev btop yq jq

# These commands clone the helper repo and make the scripts executable.

git clone https://github.com/geremyCohen/arm_kernel_install_guide.git ~/arm_kernel_install_guide
cd ~/arm_kernel_install_guide
chmod +x scripts/*.sh
Expand Down