This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: switch to dynamic architecture
- Loading branch information
Showing
5 changed files
with
26 additions
and
6 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
# This is an example for a delta layer which just installs the webpage. | ||
parent = "customized" | ||
recipes = ["hello-world"] |
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 @@ | ||
dependencies = ["rugpi-extra/nginx"] | ||
description = "install static webpage" |
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,10 +1,21 @@ | ||
[repositories] | ||
rugpi-extra = { git = "https://github.com/silitics/rugpi-extra.git" } | ||
|
||
[images.rpi4] | ||
[images.tryboot] | ||
layer = "customized" | ||
|
||
# A specific image including the firmware update for Raspberry Pi 4 and CM4. | ||
[images.pi4] | ||
layer = "customized" | ||
# Include the firmware update for Raspberry Pi 4 and CM4. | ||
include_firmware = "pi4" | ||
|
||
[images.tryboot] | ||
# An image using the U-Boot boot flow for Raspberry Pi 3 and Zero 2. | ||
[images.u-boot] | ||
layer = "customized" | ||
boot_flow = "u-boot" | ||
|
||
# An `armhf` image for older Raspberry Pi's using the U-Boot boot flow. | ||
[images.u-boot-armhf] | ||
layer = "customized" | ||
architecture = "armhf" | ||
boot_flow = "u-boot" |