-
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.
yaml --- r: 347104 b: refs/heads/master c: 919aa45 h: refs/heads/master v: v3
- Loading branch information
Takashi Iwai
authored and
Rusty Russell
committed
Dec 14, 2012
1 parent
595cf70
commit 49bcb8c
Showing
4 changed files
with
22 additions
and
9 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,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 82fab442f5322b016f72891c0db2436c6a6c20b7 | ||
refs/heads/master: 919aa45e43a84d40c27c83f6117cfa6542cee14e |
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,19 @@ | ||
/* SYMBOL_PREFIX defined on commandline from CONFIG_SYMBOL_PREFIX */ | ||
#ifndef SYMBOL_PREFIX | ||
#define ASM_SYMBOL(sym) sym | ||
#else | ||
#define PASTE2(x,y) x##y | ||
#define PASTE(x,y) PASTE2(x,y) | ||
#define ASM_SYMBOL(sym) PASTE(SYMBOL_PREFIX, sym) | ||
#endif | ||
|
||
#define GLOBAL(name) \ | ||
.globl ASM_SYMBOL(name); \ | ||
ASM_SYMBOL(name): | ||
|
||
.section ".init.data","aw" | ||
|
||
GLOBAL(modsign_certificate_list) | ||
.incbin "signing_key.x509" | ||
.incbin "extra_certificates" | ||
GLOBAL(modsign_certificate_list_end) |
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