acrn-hypervisor: update to acrn-2019w20.4-140000p
Zide Chen (4): hv: implement NEED_SHUTDOWN_VM request to idle thread hv: emulate reset register 0xcf9 and 0x64 hv: shutdown guest VM upon triple fault exceptions hv: emulate ACPI reset register for Service OS guest Li, Fei1 (2): hv: vm: minor fix about vRTC hv: vlapic: fix tpr virtualization when VID is not enabled. Victor Sun (2): HV: hot fix on usage of CONFIG_ACPI_PARSE_ENABLED HV: fix MISRA violation of host_pm.h Kaige Fu (1): DM: Get max vcpu per vm from HV instead of hardcode Mingqiang Chi (1): hv:remove some unnecessary includes fuyongjie (1): DM: virtio-gpio: fixed static variable keeps increasing issue
This commit is contained in:
parent
4361ba44e4
commit
356a520f2f
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
|||
PKG_NAME := acrn-hypervisor
|
||||
URL = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w20.2-140000p.tar.gz
|
||||
URL = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w20.4-140000p.tar.gz
|
||||
ARCHIVES =
|
||||
|
||||
include ../common/Makefile.common
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
#
|
||||
%define keepstatic 1
|
||||
Name : acrn-hypervisor
|
||||
Version : 2019w20.2.140000p
|
||||
Release : 199
|
||||
URL : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w20.2-140000p.tar.gz
|
||||
Source0 : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w20.2-140000p.tar.gz
|
||||
Version : 2019w20.4.140000p
|
||||
Release : 200
|
||||
URL : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w20.4-140000p.tar.gz
|
||||
Source0 : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w20.4-140000p.tar.gz
|
||||
Summary : No detailed summary available
|
||||
Group : Development/Tools
|
||||
License : BSD-3-Clause CC-BY-4.0 ISC
|
||||
|
@ -127,20 +127,20 @@ staticdev components for the acrn-hypervisor package.
|
|||
|
||||
|
||||
%prep
|
||||
%setup -q -n acrn-hypervisor-acrn-2019w20.2-140000p
|
||||
%setup -q -n acrn-hypervisor-acrn-2019w20.4-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=1557837218
|
||||
export SOURCE_DATE_EPOCH=1558009983
|
||||
export LDFLAGS="${LDFLAGS} -fno-lto"
|
||||
make %{?_smp_mflags} all sbl-hypervisor BUILD_VERSION=”%{version}_%{release}” BUILD_TAG=”%{version}”
|
||||
|
||||
|
||||
%install
|
||||
export SOURCE_DATE_EPOCH=1557837218
|
||||
export SOURCE_DATE_EPOCH=1558009983
|
||||
rm -rf %{buildroot}
|
||||
mkdir -p %{buildroot}/usr/share/package-licenses/acrn-hypervisor
|
||||
cp LICENSE %{buildroot}/usr/share/package-licenses/acrn-hypervisor/LICENSE
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = acrn-hypervisor
|
||||
url = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w20.2-140000p.tar.gz
|
||||
url = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w20.4-140000p.tar.gz
|
||||
archives =
|
||||
giturl = https://github.com/projectacrn/acrn-hypervisor.git
|
||||
|
||||
|
|
Loading…
Reference in New Issue