acrn-hypervisor: update to acrn-2018w47.2-140000p
Zide Chen (3): hv: PIO emulation handler is attached to I/O port number only hv: separate the PCI CONFIG_ADDR and CONFIG_DATA I/O port handlers hv: vpci: revert the temporary workaround of handling I/O port CF9 dongshen (3): HV: Add vuart port base address/IRQ Kconfig options HV: For MRB, use 0x3E8/IRQ6 as the vuart port base address/IRQ. HV: For NUC, use 0x3F8/IRQ4 as the vuart port base address/IRQ and use ttyS0 accordingly Shiqing Gao (2): hv: fix '(void) missing for discarded return value' hv: hv_main: clean up HV_DEBUG usage Shuo Liu (2): hv: partition mode also needs free vm id when shutdown vm hv: reset VM ioreqs in reset_vm Chen, Gang G (1): hv: Derive decryption key from Seed for Trusty to decrypt attestation keybox Jason Chen CJ (1): vmx: tiny fix for MACRO name and print format Ming Liu (1): tools: acrn-manager: set MAX_NAME_LEN to 32 Yonghua Huang (1): HV: clear memory region used by UOS before it exit Zheng, Gen (1): hypervisor: use "wbinvd" carefully in RT environment zhonghua (1): tools:acrn-crashlog:fix potential issue
This commit is contained in:
parent
b58ae8992f
commit
273bc6b57f
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
||||||
PKG_NAME := acrn-hypervisor
|
PKG_NAME := acrn-hypervisor
|
||||||
URL = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w46.4-140000p.tar.gz
|
URL = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w47.2-140000p.tar.gz
|
||||||
ARCHIVES =
|
ARCHIVES =
|
||||||
|
|
||||||
include ../common/Makefile.common
|
include ../common/Makefile.common
|
||||||
|
|
|
@ -4,10 +4,10 @@
|
||||||
#
|
#
|
||||||
%define keepstatic 1
|
%define keepstatic 1
|
||||||
Name : acrn-hypervisor
|
Name : acrn-hypervisor
|
||||||
Version : 2018w46.4.140000p
|
Version : 2018w47.2.140000p
|
||||||
Release : 120
|
Release : 121
|
||||||
URL : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w46.4-140000p.tar.gz
|
URL : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w47.2-140000p.tar.gz
|
||||||
Source0 : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w46.4-140000p.tar.gz
|
Source0 : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w47.2-140000p.tar.gz
|
||||||
Summary : No detailed summary available
|
Summary : No detailed summary available
|
||||||
Group : Development/Tools
|
Group : Development/Tools
|
||||||
License : BSD-3-Clause CC-BY-4.0 ISC
|
License : BSD-3-Clause CC-BY-4.0 ISC
|
||||||
|
@ -111,7 +111,7 @@ services components for the acrn-hypervisor package.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n acrn-hypervisor-acrn-2018w46.4-140000p
|
%setup -q -n acrn-hypervisor-acrn-2018w47.2-140000p
|
||||||
%patch1 -p1
|
%patch1 -p1
|
||||||
%patch2 -p1
|
%patch2 -p1
|
||||||
%patch3 -p1
|
%patch3 -p1
|
||||||
|
@ -121,11 +121,11 @@ export http_proxy=http://127.0.0.1:9/
|
||||||
export https_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 no_proxy=localhost,127.0.0.1,0.0.0.0
|
||||||
export LANG=C
|
export LANG=C
|
||||||
export SOURCE_DATE_EPOCH=1542301322
|
export SOURCE_DATE_EPOCH=1542713277
|
||||||
make %{?_smp_mflags} all sbl-hypervisor BUILD_VERSION=”%{version}_%{release}” BUILD_TAG=”%{version}”
|
make %{?_smp_mflags} all sbl-hypervisor BUILD_VERSION=”%{version}_%{release}” BUILD_TAG=”%{version}”
|
||||||
|
|
||||||
%install
|
%install
|
||||||
export SOURCE_DATE_EPOCH=1542301322
|
export SOURCE_DATE_EPOCH=1542713277
|
||||||
rm -rf %{buildroot}
|
rm -rf %{buildroot}
|
||||||
mkdir -p %{buildroot}/usr/share/package-licenses/acrn-hypervisor
|
mkdir -p %{buildroot}/usr/share/package-licenses/acrn-hypervisor
|
||||||
cp LICENSE %{buildroot}/usr/share/package-licenses/acrn-hypervisor/LICENSE
|
cp LICENSE %{buildroot}/usr/share/package-licenses/acrn-hypervisor/LICENSE
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = acrn-hypervisor
|
name = acrn-hypervisor
|
||||||
url = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w46.4-140000p.tar.gz
|
url = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w47.2-140000p.tar.gz
|
||||||
archives =
|
archives =
|
||||||
giturl = https://github.com/projectacrn/acrn-hypervisor.git
|
giturl = https://github.com/projectacrn/acrn-hypervisor.git
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue