blob: 0c3df4fc44a61027523ef16d72220cfe8d2ee9bf [file] [log] [blame]
Andrew Geissler09036742021-06-25 14:25:14 -05001From 1125f5a02c2f327aeffe2d6b66a9d816ad2eeec0 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 Geissler09036742021-06-25 14:25:14 -05004Subject: [PATCH 1/6] 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>
Patrick Williams2390b1b2022-11-03 13:47:49 -050013Upstream-Status: Inappropriate [oe-core cross compile specific]
Andrew Geissler82c905d2020-04-13 13:39:40 -050014---
15 OvmfPkg/build.sh | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/OvmfPkg/build.sh b/OvmfPkg/build.sh
19index 91b1442ade..1858dae31a 100755
20--- a/OvmfPkg/build.sh
21+++ b/OvmfPkg/build.sh
22@@ -24,7 +24,7 @@ then
23 # this assumes svn pulls have the same root dir
24 # export EDK_TOOLS_PATH=`pwd`/../BaseTools
25 # This version is for the tools source in edk2
26- export EDK_TOOLS_PATH=`pwd`/BaseTools
27+ export EDK_TOOLS_PATH=BBAKE_EDK_TOOLS_PATH/BaseTools
28 echo $EDK_TOOLS_PATH
29 source edksetup.sh BaseTools
30 else
31--
Andrew Geissler09036742021-06-25 14:25:14 -0500322.32.0
Andrew Geissler82c905d2020-04-13 13:39:40 -050033