-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
59 additions
and
22 deletions.
There are no files selected for viewing
3 changes: 2 additions & 1 deletion
3
bakery/templates/debian-grub-efi/recipes/hello-world/recipe.toml
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 +1,2 @@ | ||
description = "install static webpage" | ||
description = "install static webpage" | ||
dependencies = ["rugpi-extra/nginx"] |
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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
parent = "customized" | ||
|
||
recipes = [ | ||
# Include the firmware update for Raspberry Pi 4. | ||
"core/rpi-include-firmware", | ||
] | ||
|
||
[parameters."core/rpi-include-firmware"] | ||
model = "pi4" |
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
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 +1,2 @@ | ||
description = "install static webpage" | ||
description = "install static webpage" | ||
dependencies = ["rugpi-extra/nginx"] |
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,24 +1,43 @@ | ||
[repositories] | ||
rugpi-extra = { git = "https://github.com/silitics/rugpi-extra.git", branch = "v0.6" } | ||
|
||
# Compatible with: | ||
# - Raspberry Pi 5 | ||
# - Raspberry Pi 4 (with recent firmware) | ||
# - Raspberry Pi CM4 (with recent firmware) | ||
[images.tryboot] | ||
layer = "customized" | ||
include_firmware = "none" | ||
architecture = "arm64" | ||
target = "rpi-tryboot" | ||
|
||
# A specific image including the firmware update for Raspberry Pi 4 and CM4. | ||
[images.pi4] | ||
layer = "customized" | ||
include_firmware = "pi4" | ||
# This image includes a firmware update for the Raspberry Pi 4 family. | ||
# | ||
# Compatible with: | ||
# - Raspberry Pi 4 | ||
# - Raspberry Pi CM4 | ||
[images.tryboot-pi4] | ||
layer = "customized-pi4" | ||
architecture = "arm64" | ||
target = "rpi-tryboot" | ||
|
||
# An image using the U-Boot boot flow for Raspberry Pi 3 and Zero 2. | ||
[images.u-boot] | ||
# This image uses the U-Boot boot flow for older Raspberry Pi models. | ||
# | ||
# Compatible with: | ||
# - Raspberry Pi 3 | ||
# - Raspberry Pi CM3 | ||
# - Raspberry Pi Zero 2 W | ||
[images.uboot-arm64] | ||
layer = "customized" | ||
boot_flow = "u-boot" | ||
include_firmware = "none" | ||
architecture = "arm64" | ||
target = "rpi-uboot" | ||
|
||
# An `armhf` image for older Raspberry Pi's using the U-Boot boot flow. | ||
[images.u-boot-armhf] | ||
# This image uses the U-Boot boot flow for older Raspberry Pi models. | ||
# | ||
# Compatible with: | ||
# - Raspberry Pi 2 | ||
# - Raspberry Pi 1 | ||
# - Raspberry Pi Zero | ||
[images.uboot-armhf] | ||
layer = "customized" | ||
architecture = "armhf" | ||
boot_flow = "u-boot" | ||
include_firmware = "none" | ||
target = "rpi-uboot" |