diff options
author | Oliver Smith-Denny <osde@microsoft.com> | 2024-10-27 09:01:07 -0700 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-11-13 21:01:46 +0000 |
commit | fd9e9848ac8ebd349e1fe2c15a46c56566a106c7 (patch) | |
tree | e42bc39fb35238381386d05552dd604dcb584dd1 /OvmfPkg/Bhyve | |
parent | f0390f7bf14c1f5fe1205dc12185896150c70756 (diff) | |
download | edk2-fd9e9848ac8ebd349e1fe2c15a46c56566a106c7.tar.gz edk2-fd9e9848ac8ebd349e1fe2c15a46c56566a106c7.tar.bz2 edk2-fd9e9848ac8ebd349e1fe2c15a46c56566a106c7.zip |
OvmfPkg: Make ResetVector USER_DEFINED
Following the change in UefiCpuPkg, this moves OvmfPkg's
ResetVectors to USER_DEFINED modules to prevent any
NULL libraries from being linked against them, allowing
for expected behavior from the ResetVector and for
simpler implementation of NULL libraries applied globally.
Signed-off-by: Oliver Smith-Denny <osde@linux.microsoft.com>
Diffstat (limited to 'OvmfPkg/Bhyve')
-rw-r--r-- | OvmfPkg/Bhyve/BhyveX64.fdf | 2 | ||||
-rw-r--r-- | OvmfPkg/Bhyve/ResetVector/ResetVector.inf | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/OvmfPkg/Bhyve/BhyveX64.fdf b/OvmfPkg/Bhyve/BhyveX64.fdf index 497c6753ce..0556815781 100644 --- a/OvmfPkg/Bhyve/BhyveX64.fdf +++ b/OvmfPkg/Bhyve/BhyveX64.fdf @@ -454,7 +454,7 @@ FILE FV_IMAGE = 9E21FD93-9C72-4c15-8C4B-E77F1DB2D792 { RAW ASL |.aml
}
-[Rule.Common.SEC.RESET_VECTOR]
+[Rule.Common.USER_DEFINED.RESET_VECTOR]
FILE RAW = $(NAMED_GUID) {
RAW BIN Align = 16 |.bin
}
diff --git a/OvmfPkg/Bhyve/ResetVector/ResetVector.inf b/OvmfPkg/Bhyve/ResetVector/ResetVector.inf index 772dda5404..cd1cd18006 100644 --- a/OvmfPkg/Bhyve/ResetVector/ResetVector.inf +++ b/OvmfPkg/Bhyve/ResetVector/ResetVector.inf @@ -12,7 +12,7 @@ INF_VERSION = 1.29
BASE_NAME = ResetVector
FILE_GUID = 1BA0062E-C779-4582-8566-336AE8F78F09
- MODULE_TYPE = SEC
+ MODULE_TYPE = USER_DEFINED
VERSION_STRING = 1.1
#
|