From 73fff505780467b7bd3d58ccbd39a22332849e41 Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Thu, 18 Jun 2020 10:44:59 -0400 Subject: runx: update to v5.4 kernel Updating to the tip of the runx repository. This brings in some build changes, as well as introducing the v5.4 kernel. Our patches for cross compilation need to be tweaked to the new structure, as well as the install task to pickup the new location of some files. Signed-off-by: Bruce Ashfield --- recipes-core/runx/runx_git.bb | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'recipes-core/runx/runx_git.bb') diff --git a/recipes-core/runx/runx_git.bb b/recipes-core/runx/runx_git.bb index 3b4cd335..991e6e1f 100644 --- a/recipes-core/runx/runx_git.bb +++ b/recipes-core/runx/runx_git.bb @@ -2,15 +2,15 @@ HOMEPAGE = "https://github.com/lf-edge/runx" SUMMARY = "runx stuff" DESCRIPTION = "Xen Runtime for OCI" -SRCREV_runx = "da0c75c58ae5232d19b1791c33545db3225e1ea9" +SRCREV_runx = "f24efd33fb18469e9cfe4d1bfe8e2c90ec8c4e93" SRC_URI = "\ git://github.com/lf-edge/runx;nobranch=1;name=runx \ - https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.15.tar.xz;destsuffix=git/kernel/build \ + https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.4.tar.xz;destsuffix=git/kernel/build \ file://0001-make-kernel-cross-compilation-tweaks.patch \ file://0001-make-initrd-cross-install-tweaks.patch \ " -SRC_URI[md5sum] = "0d701ac1e2a67d47ce7127432df2c32b" -SRC_URI[sha256sum] = "5a26478906d5005f4f809402e981518d2b8844949199f60c4b6e1f986ca2a769" +SRC_URI[md5sum] = "ce9b2d974d27408a61c53a30d3f98fb9" +SRC_URI[sha256sum] = "bf338980b1670bca287f9994b7441c2361907635879169c64ae78364efc5f491" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=945fc9aa694796a6337395cc291ddd8c" @@ -31,7 +31,7 @@ DEPENDS = "busybox go-build" # for the kernel build phase DEPENDS += "openssl-native coreutils-native util-linux-native xz-native bc-native" -DEPENDS += "qemu-native" +DEPENDS += "qemu-native bison-native" RDEPENDS_${PN} += " jq bash" RDEPENDS_${PN} += " xen-tools-xl go-build socat daemonize" @@ -77,7 +77,7 @@ do_compile() { export QEMU_USER=`which qemu-${HOST_ARCH}` export BUSYBOX="${WORKDIR}/busybox" export CROSS_COMPILE="t" - ${S}/kernel/make-initrd + ${S}/initrd/make-initrd } do_install() { @@ -86,11 +86,11 @@ do_install() { install -d ${D}${datadir}/runX install -m 755 ${S}/kernel/out/kernel ${D}/${datadir}/runX - install -m 755 ${S}/kernel/out/initrd ${D}/${datadir}/runX + install -m 755 ${S}/initrd/out/initrd ${D}/${datadir}/runX install -m 755 ${S}/files/start ${D}/${datadir}/runX + install -m 755 ${S}/files/create ${D}/${datadir}/runX install -m 755 ${S}/files/state ${D}/${datadir}/runX install -m 755 ${S}/files/delete ${D}/${datadir}/runX - install -m 755 ${S}/files/serial_bridge ${D}/${datadir}/runX install -m 755 ${S}/files/serial_start ${D}/${datadir}/runX -- cgit v1.2.3-54-g00ecf