-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
put firmware headers on during the build
- Loading branch information
1 parent
5042b0b
commit 87b9ebb
Showing
6 changed files
with
61 additions
and
15 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
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,18 @@ | ||
.syntax unified | ||
|
||
.section .header, "a" | ||
|
||
.type g_header, %object | ||
.size g_header, .-g_header | ||
|
||
g_header: | ||
.byte 'K','P','K','Y' | ||
.word _codelen | ||
.byte 0 // sigindex1 | ||
.byte 0 // sigindex2 | ||
.byte 0 // sigindex3 | ||
.byte 3 // flags: Preserve | UpdateAfter | ||
. = . + 52 // reserved | ||
. = . + 64 // sig1 | ||
. = . + 64 // sig2 | ||
. = . + 64 // sig3 |
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,18 @@ | ||
.syntax unified | ||
|
||
.section .header, "a" | ||
|
||
.type g_header, %object | ||
.size g_header, .-g_header | ||
|
||
g_header: | ||
.byte 'K','P','K','Y' | ||
.word _codelen | ||
.byte 0 // sigindex1 | ||
.byte 0 // sigindex2 | ||
.byte 0 // sigindex3 | ||
.byte 1 // flags: Preserve | ||
. = . + 52 // reserved | ||
. = . + 64 // sig1 | ||
. = . + 64 // sig2 | ||
. = . + 64 // sig3 |
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