-
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.
Add linux kernel with protect payload policy.
This commit gives the possibility to start Miralis with the linux kernel while the payload is isolated from the firmware through the protect payload policy.
- Loading branch information
1 parent
4267780
commit 8d767b6
Showing
4 changed files
with
52 additions
and
127 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[policy] | ||
name = "protect_payload" | ||
|
||
[target.miralis] | ||
# Build profile for Miralis (dev profile is set by default) | ||
profile = "dev" | ||
|
||
# Miralis binary will be compiled with this value as a start address | ||
# Default to "0x80000000" | ||
start_address = 0x80000000 | ||
|
||
# Size of the Miralis' stack for each hart (i.e. core) | ||
# Default to 0x8000 | ||
stack_size = 0x8000 | ||
|
||
[target.firmware] | ||
# Build profile for the firmware (dev profile is set by default) | ||
profile = "dev" | ||
|
||
# Firmware binary will be compiled with this value as a start address | ||
# Default to "0x80200000" | ||
start_address = 0x80200000 | ||
|
||
# Size of the firmware stack for each hart (i.e. core) | ||
# Default to 0x8000 | ||
stack_size = 0x8000 |
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
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