acrn-hypervisor: update to acrn-2019w23.4-140000p
Victor Sun (16): HV: refine sw_linux struct HV: separate linux loader from direct boot sw loader HV: use api to get kernel load addr HV: make vm kernel type configurable HV: add board specific config header HV: move sos bootargs to vm configurations HV: use tag to specify multiboot module HV: modify ve820 to enable low mem at 0x100000 HV: enable load zephyr kernel HV: misra fix for patch set of Zephyr enabling HV: fix wrong log when vlapic process init sipi HV: return -1 with invalid vcpuid in pt icr access HV: remove cpu_num from vm configurations HV: remove unused INVALID_VM_ID HV: add hybrid scenario HV: return virtual lapic id in vcpuid 0b leaf Conghui Chen (2): dm: virtio: refine console options parse code dm: support VMs communication with virtio-console David B. Kinder (1): doc: fix formatting in partition doc Jason Chen CJ (1): HV: change nuc7i7bnh ram start to 0x60000000 Lei Lu (1): doc: setup logical partition scenario on nuc Peter Fang (1): OVMF release v1.1 Shiqing Gao (1): doc: update prefix format in coding guidelines ruix.li (1): doc: add instruction of Open vSwitch
This commit is contained in:
parent
dc041a35b0
commit
1b539eed96
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
|||
PKG_NAME := acrn-hypervisor
|
||||
URL = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w23.1-140000p.tar.gz
|
||||
URL = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w23.4-140000p.tar.gz
|
||||
ARCHIVES =
|
||||
|
||||
include ../common/Makefile.common
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
#
|
||||
%define keepstatic 1
|
||||
Name : acrn-hypervisor
|
||||
Version : 2019w23.1.140000p
|
||||
Release : 212
|
||||
URL : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w23.1-140000p.tar.gz
|
||||
Source0 : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w23.1-140000p.tar.gz
|
||||
Version : 2019w23.4.140000p
|
||||
Release : 213
|
||||
URL : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w23.4-140000p.tar.gz
|
||||
Source0 : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w23.4-140000p.tar.gz
|
||||
Summary : No detailed summary available
|
||||
Group : Development/Tools
|
||||
License : BSD-3-Clause CC-BY-4.0 ISC
|
||||
|
@ -130,14 +130,14 @@ staticdev components for the acrn-hypervisor package.
|
|||
|
||||
|
||||
%prep
|
||||
%setup -q -n acrn-hypervisor-acrn-2019w23.1-140000p
|
||||
%setup -q -n acrn-hypervisor-acrn-2019w23.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=1559572369
|
||||
export SOURCE_DATE_EPOCH=1559831691
|
||||
export GCC_IGNORE_WERROR=1
|
||||
export CFLAGS="$CFLAGS -fno-lto "
|
||||
export FCFLAGS="$CFLAGS -fno-lto "
|
||||
|
@ -147,7 +147,7 @@ make %{?_smp_mflags} all sbl-hypervisor BUILD_VERSION=”%{version}_%{release}
|
|||
|
||||
|
||||
%install
|
||||
export SOURCE_DATE_EPOCH=1559572369
|
||||
export SOURCE_DATE_EPOCH=1559831691
|
||||
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-2019w23.1-140000p.tar.gz
|
||||
url = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2019w23.4-140000p.tar.gz
|
||||
archives =
|
||||
giturl = https://github.com/projectacrn/acrn-hypervisor.git
|
||||
|
||||
|
|
Loading…
Reference in New Issue