-
-
Notifications
You must be signed in to change notification settings - Fork 187
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modules/linuxboot: Use a specific commit
* add linuxboot-edk2 module (if not building latest git) * patch linuxboot-edk2 Makefile to not conflict with ours * update linuxboot build dir in circleci and boards/winterfell Signed-off-by: Nathan Rennie-Waldock <[email protected]>
- Loading branch information
Showing
5 changed files
with
73 additions
and
4 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
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,2 @@ | ||
# empty placeholder file | ||
# This submodule is defined in modules/linuxboot if necessary |
39 changes: 39 additions & 0 deletions
39
...8a20958a68693ab95b7626aa9/0000-Makefile-Rename-configured-stamp-to-avoid-conflict-w.patch
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,39 @@ | ||
From d1a4d98a9ddf8e7e7f1e00ca2c143b5d5dc01afd Mon Sep 17 00:00:00 2001 | ||
From: Nathan Rennie-Waldock <[email protected]> | ||
Date: Sun, 18 Oct 2020 23:58:29 +0100 | ||
Subject: [PATCH] Makefile: Rename configured stamp to avoid conflict with | ||
heads build system | ||
|
||
Signed-off-by: Nathan Rennie-Waldock <[email protected]> | ||
--- | ||
Makefile | 8 ++++---- | ||
1 file changed, 4 insertions(+), 4 deletions(-) | ||
|
||
diff --git a/Makefile b/Makefile | ||
index 2c58529031..d400904442 100644 | ||
--- a/Makefile | ||
+++ b/Makefile | ||
@@ -26,16 +26,16 @@ $(EDK2_OUTPUTS): build-dxe | ||
ia32: | ||
build -a IA32 | ||
|
||
-build-dxe: .configured | ||
+build-dxe: .edk2-configured | ||
cd MdeModulePkg ; build | ||
|
||
-build-cpu: .configured | ||
+build-cpu: .edk2-configured | ||
cd UefiCpuPkg ; build | ||
-build-quark: .configured | ||
+build-quark: .edk2-configured | ||
cd QuarkPlatformPkg ; build | ||
build: build-dxe | ||
|
||
- .configured: | ||
+ .edk2-configured: | ||
$(MAKE) -C BaseTools | ||
. ./edksetup.sh | ||
touch $@ | ||
-- | ||
2.25.1 | ||
|