mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-05 05:15:25 +02:00

Fixing the following header inconsistencies | In file included from arch/arm/platforms/midway.c:22: | ./arch/arm/include/asm/platforms/midway.h:1: error: header guard '__ASM_ARM_PLATFORMS_MIDWAY_H' followed by '#define' of a different macro [-Werror=header-guard] | 1 | #ifndef __ASM_ARM_PLATFORMS_MIDWAY_H | ./arch/arm/include/asm/platforms/midway.h:2: note: '__ASM_ASM_PLATFORMS_MIDWAY_H' is defined here; did you mean '__ASM_ARM_PLATFORMS_MIDWAY_H'? | 2 | #define __ASM_ASM_PLATFORMS_MIDWAY_H | In file included from arch/arm/platforms/omap5.c:21: | ./arch/arm/include/asm/platforms/omap5.h:1: error: header guard '__ASM_ARM_PLATFORMS_OMAP5_H' followed by '#define' of a different macro [-Werror=header-guard] | 1 | #ifndef __ASM_ARM_PLATFORMS_OMAP5_H | ./arch/arm/include/asm/platforms/omap5.h:2: note: '__ASM_ASM_PLATFORMS_OMAP5_H' is defined here; did you mean '__ASM_ARM_PLATFORMS_OMAP5_H'? It is unclear whether this is on purpose or not, but for our limited set of permuations, we change them to match and no issues have been found. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
22 lines
528 B
BlitzBasic
22 lines
528 B
BlitzBasic
SRCREV ?= "47d911f69eb976785fd17cae4e39de4d55b94b9e"
|
|
|
|
XEN_REL ?= "4.20.0"
|
|
XEN_BRANCH ?= "stable-4.20"
|
|
|
|
SRC_URI = " \
|
|
git://xenbits.xen.org/xen.git;branch=${XEN_BRANCH} \
|
|
file://0001-menuconfig-mconf-cfg-Allow-specification-of-ncurses-location.patch \
|
|
file://0001-xen-fix-header-guard-inconsistencies-gcc15.patch \
|
|
"
|
|
|
|
LIC_FILES_CHKSUM ?= "file://COPYING;md5=d1a1e216f80b6d8da95fec897d0dbec9"
|
|
|
|
PV = "${XEN_REL}+stable"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEFAULT_PREFERENCE ??= "-1"
|
|
|
|
require xen.inc
|
|
require xen-hypervisor.inc
|