acrn-hypervisor: update to acrn-2018w37.2-140000p
Jason Chen CJ (4): io: tiny fix for error message vcpu: replace start_vcpu with run_vcpu vlapic: unmap vlapic base only for SOS trusty: do not destroy secure world if it's not created Yan, Like (4): tool: acrn-manager: do not wakeup SOS in advance tools: acrn-manager: rework acrnd resume flow tools: acrn-manager: remove unnecessary "current" field tools: acrn-manager: fix acrnctl reset issue Yu Wang (3): hv: apicv: avoid enable interrupt window if interrupt delivery enabled hv: apicv: enable interrupt-window if any pending external interrupts hv: virq: make irq_window_enabled useful Jiangbo Wu (2): samples: Add tap name as launch function parameter samples: Add AliOS as guest launch option Minggui Cao (2): HV: improve pass-thru device interrupt process Doc: add interrupt storm mitigation explanation. Victor Sun (2): HV: change wake vector info to accommodate abl HV: change wake vector to accommodate abl 1820HF1release Binbin Wu (1): dm: bios: update vsbl to v0.9 Jian Jun Chen (1): dm: vrtc: use signalfd to poll signal from timer Li Zhijian (1): DM: deinit initialized pci device when failed Shiqing Gao (1): hv: treewide: fix 'Use of function like macro' Xie, nanlin (1): doc: Add fixed issues in v0.2 release note Yin Fengwei (1): hv: avoid memory leak in trampoline code preparing
This commit is contained in:
parent
36655d941f
commit
db52a00b9b
|
@ -1,3 +1,11 @@
|
|||
vSBL Version 0.9
|
||||
- New feature:
|
||||
Update vFastboot to v0.9
|
||||
Support vRPMB key handover for AaaG.
|
||||
Support to append SSDT to ACPI table for First Stage Mount in AaaG.
|
||||
- Change:
|
||||
Enable to set boot target to CrashOS when panic happens in vSBL debug version, release version is not affected.
|
||||
|
||||
vSBL Version 0.8.1
|
||||
- New feature:
|
||||
Support trusty S3 resume.
|
||||
|
|
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
|||
PKG_NAME := acrn-hypervisor
|
||||
URL = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w36.5-140000p.tar.gz
|
||||
URL = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w37.2-140000p.tar.gz
|
||||
ARCHIVES =
|
||||
|
||||
include ../common/Makefile.common
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
#
|
||||
%define keepstatic 1
|
||||
Name : acrn-hypervisor
|
||||
Version : 2018w36.5.140000p
|
||||
Release : 85
|
||||
URL : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w36.5-140000p.tar.gz
|
||||
Source0 : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w36.5-140000p.tar.gz
|
||||
Version : 2018w37.2.140000p
|
||||
Release : 86
|
||||
URL : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w37.2-140000p.tar.gz
|
||||
Source0 : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w37.2-140000p.tar.gz
|
||||
Summary : No detailed summary available
|
||||
Group : Development/Tools
|
||||
License : BSD-3-Clause CC-BY-4.0 ISC
|
||||
|
@ -90,18 +90,18 @@ license components for the acrn-hypervisor package.
|
|||
|
||||
|
||||
%prep
|
||||
%setup -q -n acrn-hypervisor-acrn-2018w36.5-140000p
|
||||
%setup -q -n acrn-hypervisor-acrn-2018w37.2-140000p
|
||||
|
||||
%build
|
||||
export http_proxy=http://127.0.0.1:9/
|
||||
export https_proxy=http://127.0.0.1:9/
|
||||
export no_proxy=localhost,127.0.0.1,0.0.0.0
|
||||
export LANG=C
|
||||
export SOURCE_DATE_EPOCH=1536319514
|
||||
export SOURCE_DATE_EPOCH=1536675839
|
||||
make %{?_smp_mflags} all sbl-hypervisor BUILD_VERSION=”%{version}_%{release}” BUILD_TAG=”%{version}”
|
||||
|
||||
%install
|
||||
export SOURCE_DATE_EPOCH=1536319514
|
||||
export SOURCE_DATE_EPOCH=1536675839
|
||||
rm -rf %{buildroot}
|
||||
mkdir -p %{buildroot}/usr/share/doc/acrn-hypervisor
|
||||
cp LICENSE %{buildroot}/usr/share/doc/acrn-hypervisor/LICENSE
|
||||
|
@ -150,6 +150,7 @@ mkdir -p %{buildroot}/usr/share/clr-service-restart
|
|||
%files data
|
||||
%defattr(-,root,root,-)
|
||||
/usr/share/acrn/bios/MD5SUM
|
||||
/usr/share/acrn/bios/SHA512SUM
|
||||
/usr/share/acrn/bios/VSBL.bin
|
||||
/usr/share/acrn/bios/VSBL_debug.bin
|
||||
/usr/share/acrn/bios/changelog.txt
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = acrn-hypervisor
|
||||
url = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w36.5-140000p.tar.gz
|
||||
url = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w37.2-140000p.tar.gz
|
||||
archives =
|
||||
giturl = https://github.com/projectacrn/acrn-hypervisor.git
|
||||
|
||||
|
|
Loading…
Reference in New Issue