acrn-hypervisor: update to acrn-2019w11.4-140000p

Li, Fei1 (6):
      hv: vlapic: correct wrong use of vector
      hv: vlapic: call vlapic_accept_intr directly in vlapic_set_error
      hv: vlapic: add vector check for x2apic SELF IPI
      hv: vlapic: move LVT IRQ vector check to vlapic_fire_lvt
      hv: vlapic: add combined constraint for APICv
      hv: vlapic: minor fix about detect_apicv_cap

Shiqing Gao (6):
      doc: fix the typo related to tab
      hv: simplify `get_primary_vcpu` and `vcpu_from_vid`
      doc: update the format in coding style part
      doc: add some comments for coding guidelines
      doc: add the doc for 'Error Detection and Handling'
      doc: fix typos in coding guidelines

Tw (6):
      Makefile: remove deprecated PLATFORM
      hv: merge SBL and UEFI related stuff under bsp
      hv: merge SBL and UEFI related stuff under boot
      efi-stub: minor change for uefi refactor
      hv: remove CONFIG_PLATFORM_[SBL|UEFI] and UEFI_STUB
      Makefile: make UP2 sample directory name consistent with board name

yuhong.tao@intel.com (5):
      HV: Fix modularization vm config code lost CAT code
      tools: acrn-manager: print more debug information
      tools: acrn-manager: fix a race condition on updating VM state
      tools: acrnd: Fix launch UOS by timer list without fork()
      tools: acrnctl fix potential buffer overflow

dongshen (4):
      HV: remove the populate_msi_struct() function
      HV: declare and export sharing mode's vdev functions as global instead of static local
      HV: declare and export partition mode's vdev functions as global instead of static local
      HV: some minor code cleanup for partition mode code

Kaige Fu (3):
      HV: PAE: Add stac()/clac() in local_gva2gpa_pae
      tools: acrn-manager: Replace pdebug with explicit err msg
      DM: Add sample script to launch zephyr as guest

Mingqiang Chi (3):
      hv:move forward the initialization for  iommu & ptdev
      hv:move several tsc APIs to timer.c
      hv:remove 'cpu_mode' from struct vm_guest_paging

Sainath Grandhi (3):
      hv: Remove redundant get_dmar_info API calls
      hv: fix a redundant check in general_sw_loader
      hv: Remove multiple definitions for dmar translation structures

Binbin Wu (2):
      [RevertMe] dm: pci: restore workaround when alloc pci mem64 bar
      dm: passthru: fix potentail mem leaks

Conghui Chen (2):
      dm: usb: fix possible memory leak
      dm: virtio: add memory barrier before notify FE

Zide Chen (2):
      hv: do EPT mapping only for physical memory backed GPA on pre-launched VMs
      hv: destroy IOMMU domain after vpci_cleanup()

Arindam Roy (1):
      HV: Modularize boot folder

David B. Kinder (1):
      doc: fix broken external links

Geoffroy Van Cutsem (1):
      Documentation: update the "ACRN Shell Commands" user guide

Jason Chen CJ (1):
      hv:move instr_emul_ctxt instance to struct vcpu

Jie Deng (1):
      dm: virtio-net: fix memory leak

Minggui Cao (1):
      HV: correct COM_IRQ default config type

Qi Yadong (1):
      hv: refactor seed management

Tonny Tzeng (1):
      doc: use the new board name for UP2 in create-up2-images.sh script

Victor Sun (1):
      HV: refine location of platform_acpi_info header

Viktor Sjölind (1):
      pci.c: assert MSIX table count <= config max

Xinyun Liu (1):
      [hv] set ECX.bit31 to indicate the presence of a hypervisor

Yan, Like (1):
      hv: refine vlapic_calc_dest()

Yonghua Huang (1):
      hv:validate ID and state of vCPU for related APIs

Yuan Liu (1):
      dm: use power button acpi device to find its input event

wenlingz (1):
      audio-mediator: load updated audio kernel modules Audio kernel has updated name and add two new kernel modules from SOS 28100
This commit is contained in:
Miguel Bernal Marin 2019-03-14 10:30:17 +00:00
parent 70cdb48a64
commit 5b63766926
5 changed files with 15 additions and 20 deletions

View File

@ -1,5 +1,5 @@
PKG_NAME := acrn-hypervisor
URL = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w11.1-140000p.tar.gz
URL = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w11.4-140000p.tar.gz
ARCHIVES =
include ../common/Makefile.common

View File

@ -4,10 +4,10 @@
#
%define keepstatic 1
Name : acrn-hypervisor
Version : 2019w11.1.140000p
Release : 171
URL : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w11.1-140000p.tar.gz
Source0 : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w11.1-140000p.tar.gz
Version : 2019w11.4.140000p
Release : 172
URL : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w11.4-140000p.tar.gz
Source0 : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w11.4-140000p.tar.gz
Summary : No detailed summary available
Group : Development/Tools
License : BSD-3-Clause CC-BY-4.0 ISC
@ -117,20 +117,20 @@ services components for the acrn-hypervisor package.
%prep
%setup -q -n acrn-hypervisor-acrn-2019w11.1-140000p
%setup -q -n acrn-hypervisor-acrn-2019w11.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=1552307369
export SOURCE_DATE_EPOCH=1552559410
export LDFLAGS="${LDFLAGS} -fno-lto"
make %{?_smp_mflags} all sbl-hypervisor BUILD_VERSION=”%{version}_%{release}” BUILD_TAG=”%{version}”
%install
export SOURCE_DATE_EPOCH=1552307369
export SOURCE_DATE_EPOCH=1552559410
rm -rf %{buildroot}
mkdir -p %{buildroot}/usr/share/package-licenses/acrn-hypervisor
cp LICENSE %{buildroot}/usr/share/package-licenses/acrn-hypervisor/LICENSE
@ -150,14 +150,11 @@ ln -s ../../samples/apl-mrb/launch_uos.sh %{buildroot}/usr/share/acrn/conf/add/v
%files
%defattr(-,root,root,-)
%exclude /usr/lib/acrn/acrn.efi.map
%exclude /usr/lib/acrn/acrn.efi.out
%exclude /usr/lib/acrn/acrn.sbl.map
%exclude /usr/lib/acrn/acrn.sbl.out
/usr/lib/acrn/acrn.apl-up2.sbl
/usr/lib/acrn/acrn.apl-up2.sbl.map
/usr/lib/acrn/acrn.apl-up2.sbl.out
/usr/lib/acrn/acrn.efi
/usr/lib/acrn/acrn.sbl
/usr/lib/systemd/network/50-acrn.netdev
/usr/lib/systemd/network/50-acrn.network
@ -206,13 +203,13 @@ ln -s ../../samples/apl-mrb/launch_uos.sh %{buildroot}/usr/share/acrn/conf/add/v
/usr/share/acrn/samples/apl-mrb/runC.json
/usr/share/acrn/samples/apl-mrb/sos_bootargs_debug.txt
/usr/share/acrn/samples/apl-mrb/sos_bootargs_release.txt
/usr/share/acrn/samples/nuc/acrn.conf
/usr/share/acrn/samples/apl-up2/launch_uos.sh
/usr/share/acrn/samples/apl-up2/sos_bootargs_debug.txt
/usr/share/acrn/samples/apl-up2/sos_bootargs_release.txt
/usr/share/acrn/samples/nuc/launch_hard_rt_vm.sh
/usr/share/acrn/samples/nuc/launch_uos.sh
/usr/share/acrn/samples/nuc/launch_zephyr.sh
/usr/share/acrn/samples/nuc/runC.json
/usr/share/acrn/samples/up2/launch_uos.sh
/usr/share/acrn/samples/up2/sos_bootargs_debug.txt
/usr/share/acrn/samples/up2/sos_bootargs_release.txt
/usr/share/clr-service-restart/acrnd.service
/usr/share/defaults/telemetrics/acrnprobe.xml
@ -223,8 +220,6 @@ ln -s ../../samples/apl-mrb/launch_uos.sh %{buildroot}/usr/share/acrn/conf/add/v
%files extras
%defattr(-,root,root,-)
/usr/lib/acrn/acrn.efi.map
/usr/lib/acrn/acrn.efi.out
/usr/lib/acrn/acrn.sbl.map
/usr/lib/acrn/acrn.sbl.out

View File

@ -1,6 +1,6 @@
[package]
name = acrn-hypervisor
url = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w11.1-140000p.tar.gz
url = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w11.4-140000p.tar.gz
archives =
giturl = https://github.com/projectacrn/acrn-hypervisor.git

View File

@ -1 +1 @@
171
172

View File

@ -1 +1 @@
bda191ed2a556bfd3d61c839baa845587ed4ff2a/acrn-2019w11.1-140000p.tar.gz
51c8363ac970df2028429c131178dfd6c861cd5c/acrn-2019w11.4-140000p.tar.gz