acrn-hypervisor: update to acrn-2018w41.4-140000p
Huihuang Shi (3): HV:fix expression is not boolean HV:fix type related violations HV:change the return type of sbuf_get and sbuf_put Li, Fei1 (3): hv: mmu: add some API for guest page mode check hv: mmu: invalidate cached translation information for guest hv: mmu: make page table operation no fault Yuan Liu (3): IOC Mediator: fix multi-signal parsing issue IOC Mediator: Add return value check for snprintf IOC Mediator: Replace strtok with strsep Jason Chen CJ (2): dm: fix assertion in pci_irq_reserve vuart: assert COM1_IRQ based on its pin's polarity Jian Jun Chen (1): dm: virtio: use strnlen instead of strlen Shiqing Gao (1): hv: improve the readability of ept_cap_detect Xiangyang Wu (1): HV:MM:gpa2hpa related error checking fix Xiaoguang Wu (1): DM USB: xHCI: fix a crash issue when usb device is disconnected Yonghua Huang (1): dm: fix use of uninitialized variable in monitor.c
This commit is contained in:
parent
913ca3a551
commit
5594b6489e
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
|||
PKG_NAME := acrn-hypervisor
|
||||
URL = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w41.2-140000p.tar.gz
|
||||
URL = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w41.4-140000p.tar.gz
|
||||
ARCHIVES =
|
||||
|
||||
include ../common/Makefile.common
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
#
|
||||
%define keepstatic 1
|
||||
Name : acrn-hypervisor
|
||||
Version : 2018w41.2.140000p
|
||||
Release : 100
|
||||
URL : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w41.2-140000p.tar.gz
|
||||
Source0 : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w41.2-140000p.tar.gz
|
||||
Version : 2018w41.4.140000p
|
||||
Release : 101
|
||||
URL : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w41.4-140000p.tar.gz
|
||||
Source0 : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w41.4-140000p.tar.gz
|
||||
Summary : No detailed summary available
|
||||
Group : Development/Tools
|
||||
License : BSD-3-Clause CC-BY-4.0 ISC
|
||||
|
@ -101,7 +101,7 @@ license components for the acrn-hypervisor package.
|
|||
|
||||
|
||||
%prep
|
||||
%setup -q -n acrn-hypervisor-acrn-2018w41.2-140000p
|
||||
%setup -q -n acrn-hypervisor-acrn-2018w41.4-140000p
|
||||
%patch1 -p1
|
||||
%patch2 -p1
|
||||
%patch3 -p1
|
||||
|
@ -111,11 +111,11 @@ 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=1539120152
|
||||
export SOURCE_DATE_EPOCH=1539268195
|
||||
make %{?_smp_mflags} all sbl-hypervisor BUILD_VERSION=”%{version}_%{release}” BUILD_TAG=”%{version}”
|
||||
|
||||
%install
|
||||
export SOURCE_DATE_EPOCH=1539120152
|
||||
export SOURCE_DATE_EPOCH=1539268195
|
||||
rm -rf %{buildroot}
|
||||
mkdir -p %{buildroot}/usr/share/package-licenses/acrn-hypervisor
|
||||
cp LICENSE %{buildroot}/usr/share/package-licenses/acrn-hypervisor/LICENSE
|
||||
|
@ -190,7 +190,7 @@ cp tools/acrn-crashlog/license_header %{buildroot}/usr/share/package-licenses/ac
|
|||
/usr/lib/acrn/acrn.sbl.out
|
||||
|
||||
%files license
|
||||
%defattr(-,root,root,-)
|
||||
%defattr(0644,root,root,0755)
|
||||
/usr/share/package-licenses/acrn-hypervisor/LICENSE
|
||||
/usr/share/package-licenses/acrn-hypervisor/doc_LICENSE
|
||||
/usr/share/package-licenses/acrn-hypervisor/scripts_kconfig_LICENSE.kconfiglib
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = acrn-hypervisor
|
||||
url = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w41.2-140000p.tar.gz
|
||||
url = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w41.4-140000p.tar.gz
|
||||
archives =
|
||||
giturl = https://github.com/projectacrn/acrn-hypervisor.git
|
||||
|
||||
|
|
Loading…
Reference in New Issue