forked from nerves-project/nerves_system_rpi4
-
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.
PLTOS-271 - Allow boot partition files to be overridden in PLT-OS (#87)
- Loading branch information
Eric Rauer
authored
Oct 26, 2023
1 parent
41516ca
commit a3e6048
Showing
6 changed files
with
46 additions
and
30 deletions.
There are no files selected for viewing
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 @@ | ||
0.24.7 | ||
0.24.8 |
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,7 @@ | ||
#!/usr/bin/env bash | ||
|
||
export SCRIPT_NAME=`realpath "$0"` | ||
export SCRIPT_DIR=`dirname "$SCRIPT_NAME"` | ||
|
||
make -C "$SCRIPT_DIR" sync-packages | ||
|
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,6 @@ | ||
# Support for defing extra files for inclusion in Nerves firmware image | ||
# | ||
# For example: | ||
# on-resource recovery.bin { fat_write(${BOOT_A_PART_OFFSET}, "recovery.bin") } | ||
# on-resource pieeprom.upd { fat_write(${BOOT_A_PART_OFFSET}, "pieeprom.upd") } | ||
# on-resource pieeprom.sig { fat_write(${BOOT_A_PART_OFFSET}, "pieeprom.sig") } |
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,6 @@ | ||
# Support for defing extra files for inclusion in Nerves firmware image | ||
# | ||
# For example: | ||
# on-resource recovery.bin { fat_write(${BOOT_B_PART_OFFSET}, "recovery.bin") } | ||
# on-resource pieeprom.upd { fat_write(${BOOT_B_PART_OFFSET}, "pieeprom.upd") } | ||
# on-resource pieeprom.sig { fat_write(${BOOT_B_PART_OFFSET}, "pieeprom.sig") } |
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,13 @@ | ||
# Support for defing extra files for inclusion in Nerves firmware image | ||
# | ||
# For example: | ||
# | ||
#file-resource recovery.bin { | ||
# host-path = "${NERVES_APP}/bootfs_overlay/recovery.bin" | ||
#} | ||
#file-resource pieeprom.upd { | ||
# host-path = "${NERVES_APP}/bootfs_overlay/pieeprom.upd" | ||
#} | ||
#file-resource pieeprom.sig { | ||
# host-path = "${NERVES_APP}/bootfs_overlay/pieeprom.sig" | ||
#} |