-
-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ubootRaspberryPi*: add patch to fix bootstd behavior
This patch enables the raspberry pi (and really any board using standard boot without BOOTSTD_FULL) to boot properly when `boot_targets` only specifies the uclass of the device to boot from (e.g. "mmc" rather than "mmc0").
- Loading branch information
Showing
2 changed files
with
9 additions
and
4 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
...onfigs-rpi-allow-for-bigger-kernels.patch → ...01-rpi.env-allow-for-bigger-kernels.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
From 05769cd401f443f29547dbacd1b722e9a099b66b Mon Sep 17 00:00:00 2001 | ||
From 30c64236cca889cc54e9100d050cef2715692c72 Mon Sep 17 00:00:00 2001 | ||
From: Jared Baur <[email protected]> | ||
Date: Mon, 2 Oct 2023 18:32:34 -0700 | ||
Subject: [PATCH] configs/rpi: allow for bigger kernels | ||
Date: Fri, 6 Oct 2023 23:34:57 -0700 | ||
Subject: [PATCH 1/2] rpi.env: allow for bigger kernels | ||
|
||
--- | ||
board/raspberrypi/rpi/rpi.env | 16 ++++++++-------- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,6 +21,7 @@ | |
, armTrustedFirmwareRK3399 | ||
, armTrustedFirmwareS905 | ||
, buildPackages | ||
, fetchpatch2 | ||
}: | ||
|
||
let | ||
|
@@ -47,7 +48,11 @@ let | |
src = if src == null then defaultSrc else src; | ||
|
||
patches = [ | ||
./0001-configs-rpi-allow-for-bigger-kernels.patch | ||
./0001-rpi.env-allow-for-bigger-kernels.patch | ||
(fetchpatch2 { | ||
url = "https://patchwork.ozlabs.org/project/uboot/patch/[email protected]/raw/"; | ||
hash = "sha256-GJHmfYDmJjqHBY+fgkyHrqyJYMzgvJksHXSZz8sK1A8="; | ||
}) | ||
] ++ extraPatches; | ||
|
||
postPatch = '' | ||
|