diff options
author | Adrian Dudau <adrian.dudau@enea.com> | 2015-07-08 11:08:01 +0200 |
---|---|---|
committer | Adrian Dudau <adrian.dudau@enea.com> | 2015-07-08 11:09:24 +0200 |
commit | ec64b2418ccef1e14c6e58b8ca81bb9162c1dfeb (patch) | |
tree | bff0bd4240f00bbb21624c1df55583f61abaea25 /recipes-extended/xen/xen_4.3.1.bb | |
download | meta-virtualization-daisy-enea.tar.gz |
initial commit for Enea Linux 4.0daisy-enea
Migrated from the internal git server on the daisy-enea branch
Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Diffstat (limited to 'recipes-extended/xen/xen_4.3.1.bb')
-rw-r--r-- | recipes-extended/xen/xen_4.3.1.bb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/recipes-extended/xen/xen_4.3.1.bb b/recipes-extended/xen/xen_4.3.1.bb new file mode 100644 index 00000000..2c9806b6 --- /dev/null +++ b/recipes-extended/xen/xen_4.3.1.bb | |||
@@ -0,0 +1,24 @@ | |||
1 | require xen.inc | ||
2 | |||
3 | SRC_URI = " \ | ||
4 | http://bits.xensource.com/oss-xen/release/${PV}/xen-${PV}.tar.gz \ | ||
5 | file://flask-avoid-installing-policy-file-as-boot.patch \ | ||
6 | " | ||
7 | |||
8 | SRC_URI[md5sum] = "7616b8704e1ab89c81f011f0e3703bc8" | ||
9 | SRC_URI[sha256sum] = "3b5b7cc508b1739753585b5c25635471cdcef680e8770a78bf6ef9333d26a9fd" | ||
10 | |||
11 | S = "${WORKDIR}/xen-${PV}" | ||
12 | |||
13 | RDEPENDS_${PN}-base += "\ | ||
14 | ${PN}-libblktap \ | ||
15 | ${PN}-flask \ | ||
16 | " | ||
17 | |||
18 | do_configure_prepend() { | ||
19 | # fixup qemu-xen-traditional pciutils check hardcoded to test /usr/include/pci | ||
20 | sed -i 's/\/usr\/include\/pci/$(STAGING_INCDIR)\/pci/g' ${S}/tools/qemu-xen-traditional/xen-hooks.mak | ||
21 | |||
22 | # fixup for qemu to cross compile | ||
23 | sed -i 's/configure --d/configure --cross-prefix=${TARGET_PREFIX} --d/g' ${S}/tools/qemu-xen-traditional/xen-setup | ||
24 | } | ||