acrn-hypervisor: update to acrn-2018w37.4-140000p
Mingqiang Chi (7): hv:Replace dynamic memory allocation for vmcs region hv: Replace dynamic memory allocation for I/O bitmaps hv: Replace dynamic memory allocation for MSR bitmap hv:Replace dynamic memory allocation for apic access address hv:Move vlapic structure to vlapic.h hv:Remove redundancy 'vlapic' in 'struct vcpu' hv:Replace vlapic pointer with instance in vcpu_arch Shiqing Gao (5): hv: vioapic/vpic: clean up spinlock wrappers hv: clean up div related code hv: clean up udelay/mdelay related code hv: clean up spinlock wrappers hv: clean up some header files Yin Fengwei (2): hv: fix the issue of movs emulation hv: add SMAP/SMEP check during guest page walking Binbin Wu (1): dm: passthru: fix a bug in msix read/write David B. Kinder (1): doc: allow overriding displayed doc version Jason Chen CJ (1): hypercall: no need check HV memory overlap for MR_DEL Junjun Shan (1): hv:treewide:fix multiple MISRAC violations Liu, Xinwu (1): tools:acrn-crashlog: Change the algorithm of generating event key Yan, Like (1): hv:irq: correct the size of irq_alloc_bitmap Yuan Liu (1): IOC mediator: add RTC feature
This commit is contained in:
parent
db52a00b9b
commit
2b7663f4db
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
|||
PKG_NAME := acrn-hypervisor
|
||||
URL = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w37.2-140000p.tar.gz
|
||||
URL = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w37.4-140000p.tar.gz
|
||||
ARCHIVES =
|
||||
|
||||
include ../common/Makefile.common
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
#
|
||||
%define keepstatic 1
|
||||
Name : acrn-hypervisor
|
||||
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
|
||||
Version : 2018w37.4.140000p
|
||||
Release : 87
|
||||
URL : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w37.4-140000p.tar.gz
|
||||
Source0 : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w37.4-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-2018w37.2-140000p
|
||||
%setup -q -n acrn-hypervisor-acrn-2018w37.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=1536675839
|
||||
export SOURCE_DATE_EPOCH=1536837835
|
||||
make %{?_smp_mflags} all sbl-hypervisor BUILD_VERSION=”%{version}_%{release}” BUILD_TAG=”%{version}”
|
||||
|
||||
%install
|
||||
export SOURCE_DATE_EPOCH=1536675839
|
||||
export SOURCE_DATE_EPOCH=1536837835
|
||||
rm -rf %{buildroot}
|
||||
mkdir -p %{buildroot}/usr/share/doc/acrn-hypervisor
|
||||
cp LICENSE %{buildroot}/usr/share/doc/acrn-hypervisor/LICENSE
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = acrn-hypervisor
|
||||
url = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w37.2-140000p.tar.gz
|
||||
url = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w37.4-140000p.tar.gz
|
||||
archives =
|
||||
giturl = https://github.com/projectacrn/acrn-hypervisor.git
|
||||
|
||||
|
|
Loading…
Reference in New Issue