Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update building.adoc commands to ensure KERNEL is exported #3020

Closed
wants to merge 1 commit into from
Closed
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
16 changes: 8 additions & 8 deletions documentation/asciidoc/computers/linux_kernel/building.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ For Raspberry Pi 1, Zero and Zero W, and Raspberry Pi Compute Module 1 default (
[,bash]
----
cd linux
KERNEL=kernel
export KERNEL=kernel
make bcmrpi_defconfig
----

Expand All @@ -67,7 +67,7 @@ For Raspberry Pi 2, 3, 3+ and Zero 2 W, and Raspberry Pi Compute Modules 3 and 3
[,bash]
----
cd linux
KERNEL=kernel7
export KERNEL=kernel7
make bcm2709_defconfig
----

Expand All @@ -76,15 +76,15 @@ For Raspberry Pi 4 and 400, and Raspberry Pi Compute Module 4 default 32-bit bui
[,bash]
----
cd linux
KERNEL=kernel7l
export KERNEL=kernel7l
make bcm2711_defconfig
----

For Raspberry Pi 3, 3+, 4, 400 and Zero 2 W, and Raspberry Pi Compute Modules 3, 3+ and 4 default 64-bit build configuration
[,bash]
----
cd linux
KERNEL=kernel8
export KERNEL=kernel8
make bcm2711_defconfig
----

Expand Down Expand Up @@ -183,7 +183,7 @@ For Raspberry Pi 1, Zero and Zero W, and Raspberry Pi Compute Module 1:
[,bash]
----
cd linux
KERNEL=kernel
export KERNEL=kernel
make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- bcmrpi_defconfig
----

Expand All @@ -192,7 +192,7 @@ For Raspberry Pi 2, 3, 3+ and Zero 2 W, and Raspberry Pi Compute Modules 3 and 3
[,bash]
----
cd linux
KERNEL=kernel7
export KERNEL=kernel7
make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- bcm2709_defconfig
----

Expand All @@ -201,7 +201,7 @@ For Raspberry Pi 4 and 400, and Raspberry Pi Compute Module 4:
[,bash]
----
cd linux
KERNEL=kernel7l
export KERNEL=kernel7l
make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- bcm2711_defconfig
----

Expand All @@ -212,7 +212,7 @@ For Raspberry Pi 3, 3+, 4, 400 and Zero 2 W, and Raspberry Pi Compute Modules 3,
[,bash]
----
cd linux
KERNEL=kernel8
export KERNEL=kernel8
make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- bcm2711_defconfig
----

Expand Down