blob: 5db6f75b19191e86d046d4e5cddbc49bdee3a048 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
diff --git a/Makefile b/Makefile
--- a/Makefile
+++ b/Makefile
@@ -161,8 +161,9 @@ fs_edk2: build_edk2
done
build_edk2: $(EDK2BASE)/RefindPkg
- cd $(EDK2BASE) && \
- . ./edksetup.sh BaseTools && \
+ +cd $(EDK2BASE) && \
+ . udk-workspace && \
+ build -a $(UC_ARCH) -p MdePkg/MdePkg.dsc && \
build -a $(UC_ARCH) -p RefindPkg/RefindPkg.dsc
mkdir -p ./drivers_$(FILENAME_CODE)
diff --git a/filesystems/Makefile b/filesystems/Makefile
index 99452ed..9bc984d 100644
--- a/filesystems/Makefile
+++ b/filesystems/Makefile
@@ -5,6 +5,7 @@
# name of the driver to be built. This is done because of a dependency
# in the fsw_efi.c file on the filesystem type; this file must be
# recompiled for each new filesystem built.
+.NOTPARALLEL:
# This program is licensed under the terms of the GNU GPL, version 3,
# or (at your option) any later version.
|