blob: c32963a807b38ddd1077f84c4c24442fed322714 [file] [log] [blame]
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001From 200ff35c6545b4ab85f5ea7a6096fbaec3d82f6d Mon Sep 17 00:00:00 2001
Andrew Geissler82c905d2020-04-13 13:39:40 -05002From: Ricardo Neri <ricardo.neri-calderon@linux.intel.com>
3Date: Thu, 9 Jun 2016 02:23:01 -0700
Andrew Geissler6ce62a22020-11-30 19:58:47 -06004Subject: [PATCH 1/4] ovmf: update path to native BaseTools
Andrew Geissler82c905d2020-04-13 13:39:40 -05005
6BaseTools is a set of utilities to build EDK-based firmware. These utilities
7are used during the build process. Thus, they need to be built natively.
8When cross-compiling, we need to provide a path to the location of these
9tools. The BBAKE_EDK_TOOLS_PATH string is used as a pattern to be replaced
10with the appropriate location before building.
11
12Signed-off-by: Ricardo Neri <ricardo.neri-calderon@linux.intel.com>
13Upstream-Status: Pending
14
15---
16 OvmfPkg/build.sh | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
19diff --git a/OvmfPkg/build.sh b/OvmfPkg/build.sh
20index 91b1442ade..1858dae31a 100755
21--- a/OvmfPkg/build.sh
22+++ b/OvmfPkg/build.sh
23@@ -24,7 +24,7 @@ then
24 # this assumes svn pulls have the same root dir
25 # export EDK_TOOLS_PATH=`pwd`/../BaseTools
26 # This version is for the tools source in edk2
27- export EDK_TOOLS_PATH=`pwd`/BaseTools
28+ export EDK_TOOLS_PATH=BBAKE_EDK_TOOLS_PATH/BaseTools
29 echo $EDK_TOOLS_PATH
30 source edksetup.sh BaseTools
31 else
32--
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600332.28.0
Andrew Geissler82c905d2020-04-13 13:39:40 -050034