acrn-hypervisor: update to acrn-2018w35.5-140000p
David B. Kinder (1): doc: fix graphviz scanning and processing Fei Jiang (1): Documentation: update GVT-G-porting-image1.png for AcrnGT official name Sainath Grandhi (1): hv: Leave interrupts disabled during vmexit - ACRN partition mode Shiqing Gao (1): hv: fix MISRA-C issues related to for loop Wei Liu (1): samples: remove extra option for dm Yuan Liu (1): IOC mediator: fix no CBC signals after resuming wenshelx (1): security: Enable '-fpie, -pie' options
This commit is contained in:
parent
f4f174b4d9
commit
2ede39dbc2
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
|||
PKG_NAME := acrn-hypervisor
|
||||
URL = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w35.4-140000p.tar.gz
|
||||
URL = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w35.5-140000p.tar.gz
|
||||
ARCHIVES =
|
||||
|
||||
include ../common/Makefile.common
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
#
|
||||
%define keepstatic 1
|
||||
Name : acrn-hypervisor
|
||||
Version : 2018w35.4.140000p
|
||||
Release : 79
|
||||
URL : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w35.4-140000p.tar.gz
|
||||
Source0 : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w35.4-140000p.tar.gz
|
||||
Version : 2018w35.5.140000p
|
||||
Release : 80
|
||||
URL : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w35.5-140000p.tar.gz
|
||||
Source0 : https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w35.5-140000p.tar.gz
|
||||
Summary : No detailed summary available
|
||||
Group : Development/Tools
|
||||
License : BSD-3-Clause CC-BY-4.0 ISC
|
||||
|
@ -99,18 +99,18 @@ license components for the acrn-hypervisor package.
|
|||
|
||||
|
||||
%prep
|
||||
%setup -q -n acrn-hypervisor-acrn-2018w35.4-140000p
|
||||
%setup -q -n acrn-hypervisor-acrn-2018w35.5-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=1535620984
|
||||
export SOURCE_DATE_EPOCH=1535714582
|
||||
make %{?_smp_mflags} all sbl-hypervisor BUILD_VERSION=”%{version}_%{release}” BUILD_TAG=”%{version}”
|
||||
|
||||
%install
|
||||
export SOURCE_DATE_EPOCH=1535620984
|
||||
export SOURCE_DATE_EPOCH=1535714582
|
||||
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-2018w35.4-140000p.tar.gz
|
||||
url = https://github.com/projectacrn/acrn-hypervisor/archive/acrn-2018w35.5-140000p.tar.gz
|
||||
archives =
|
||||
giturl = https://github.com/projectacrn/acrn-hypervisor.git
|
||||
|
||||
|
@ -21,6 +21,8 @@ broken_parallel_build = false
|
|||
compat = false
|
||||
# set conservative build flags
|
||||
conservative_flags = false
|
||||
# dev package requires the extras to be installed
|
||||
dev_requires_extras = false
|
||||
# pass -ffast-math to compiler
|
||||
fast-math = false
|
||||
# optimize build for speed over size
|
||||
|
|
Loading…
Reference in New Issue