diff options
author | Scott Murray <scott.murray@konsulko.com> | 2020-01-22 16:37:24 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2020-01-27 15:06:00 -0500 |
commit | 650e928640723e303c4090261dabe2530ab683e1 (patch) | |
tree | f43c05ca41291ab8347214ead82c990aa6d5843c /recipes-support | |
parent | 356015eb1bc597ccde99fe68014b36b59fd6817d (diff) |
vboxguestdrivers: upgrade to 6.1.2
The previously backported 6.0.10 version of the vboxguestdrivers
recipe does not build against newer kernels, and meta-oe still
just has 5.2.22, so backport the 6.1.2 recipe from meta-oe master
branch commit df61601.
Bug-AGL: SPEC-2932
Change-Id: I258636ed6a4afe6edb7959480b18fc5e38438e99
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'recipes-support')
-rw-r--r-- | recipes-support/vboxguestdrivers/vboxguestdrivers_6.1.2.bb (renamed from recipes-support/vboxguestdrivers/vboxguestdrivers_6.0.10.bb) | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/recipes-support/vboxguestdrivers/vboxguestdrivers_6.0.10.bb b/recipes-support/vboxguestdrivers/vboxguestdrivers_6.1.2.bb index 4c7ad3679..62c2b509f 100644 --- a/recipes-support/vboxguestdrivers/vboxguestdrivers_6.0.10.bb +++ b/recipes-support/vboxguestdrivers/vboxguestdrivers_6.1.2.bb @@ -13,18 +13,21 @@ VBOX_NAME = "VirtualBox-${PV}" SRC_URI = "http://download.virtualbox.org/virtualbox/${PV}/${VBOX_NAME}.tar.bz2 \ file://Makefile.utils \ - " -SRC_URI[md5sum] = "8428f7e27b244803df180213bc5d4a68" -SRC_URI[sha256sum] = "5236148a93267478fb6d306f6343aa9587d3f90f437f54c7b3485bd9d538d2f8" +" +SRC_URI[md5sum] = "f4f42fd09857556b04b803fb99cc6905" +SRC_URI[sha256sum] = "4326576e8428ea3626194fc82646347576e94c61f11d412a669fc8a10c2a1e67" S = "${WORKDIR}/vbox_module" export BUILD_TARGET_ARCH="${ARCH}" export BUILD_TARGET_ARCH_x86-64="amd64" -EXTRA_OEMAKE += "KERN_DIR='${WORKDIR}/${KERNEL_VERSION}/build' all" +EXTRA_OEMAKE += "KERN_DIR='${WORKDIR}/${KERNEL_VERSION}/build' KBUILD_VERBOSE=1" -addtask export_sources before do_patch after do_unpack +# otherwise 5.2.22 builds just vboxguest +MAKE_TARGETS = "all" + +addtask export_sources after do_patch before do_configure do_export_sources() { mkdir -p "${S}" @@ -40,12 +43,15 @@ do_export_sources() { } do_configure_prepend() { + # vboxguestdrivers/5.2.6-r0/vbox_module/vboxguest/Makefile.include.header:99: *** The variable KERN_DIR must be a kernel build folder and end with /build without a trailing slash, or KERN_VER must be set. Stop. + # vboxguestdrivers/5.2.6-r0/vbox_module/vboxguest/Makefile.include.header:108: *** The kernel build folder path must end in <version>/build, or the variable KERN_VER must be set. Stop. mkdir -p ${WORKDIR}/${KERNEL_VERSION} ln -snf ${STAGING_KERNEL_DIR} ${WORKDIR}/${KERNEL_VERSION}/build } # compile and install mount utility -do_compile_append() { +do_compile() { + oe_runmake all oe_runmake 'LD=${CC}' 'LDFLAGS=${LDFLAGS}' -C ${S}/utils if ! [ -e vboxguest.ko -a -e vboxsf.ko -a -e vboxvideo.ko ] ; then echo "ERROR: One of vbox*.ko modules wasn't built" |