From 36025191861706880f778ab8d42379209bdf6749 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Wed, 19 Jul 2023 19:49:20 +0200 Subject: [PATCH] linux: Update version from 6.1.7-446 to 6.1.39-450 Configuration changes: * e4b7ea61ed17 config-mpi: Disable frame buffer drivers * 7a512c779620 config-mpi: Build DRM driver for simple platform-provided framebuffers (DRM_SIMPLE=y) * 852cdf42c063 config-mpi: Build coreboot framebuffer into Linux (GOOGLE_FRAMEBUFFER_COREBOOT=y) * cb243590078a config-mpi: Switch HID devices from Y to M * fc1d3133d7ff scsi: mpt3sas: Rate-limit scsi_dma_map() error messages * 6d44c56d3ca6 Revert "scsi: mpt3sas: Remove scsi_dma_map() error messages" * 415b450cb0a9 config-mpi: Built host kernel accelerator for virtio net as module (VHOST_NET=m) --- linux-6.1.7-446.bee | 50 --------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100755 linux-6.1.7-446.bee diff --git a/linux-6.1.7-446.bee b/linux-6.1.7-446.bee deleted file mode 100755 index c2a547332..000000000 --- a/linux-6.1.7-446.bee +++ /dev/null @@ -1,50 +0,0 @@ -#!/bin/env beesh - -# note: BEE_MAKEFLAGS="-j $(nproc)" ./linux-xxx.bee - -KERNELVERSION=${PKGVERSION} - -# append extra version to get for example 4.8-rc4 -KERNELVERSION=${KERNELVERSION}${PKGEXTRAVERSION_DASH} - -echo $KERNELVERSION - -#SRCURL[0]="https://github.molgen.mpg.de/mariux64/linux/archive/refs/tags/mariux-$KERNELVERSION-$PKGREVISION.tar.gz" -SRCURL[0]="https://beehive.molgen.mpg.de/db13f8c9b17b0be4a4b7a2294efaea0c/mariux-6.1.7-446.tar.gz" - -KERNELLOCAL=".mx64.${PKGREVISION}" -FULLKERNELVERSION="${KERNELVERSION}${KERNELLOCAL}" - -B=${S} - -same_revision_files=$(ls ${BEE_PKGDIR}/linux-[0-9].[0-9]*-${PKGREVISION}.x86_64.bee.* 2>/dev/null) \ - && echo "A kernel with revision ${PKGREVISION} has already been build: $same_revision_files" \ - && exit - -mee_patch() { - echo "PATCH $@" - bee_patch $@ -} - -mee_configure() { - echo "configure $@" - echo "CONFIG_LOCALVERSION=\"$KERNELLOCAL\"" > .config - grep -v 'CONFIG_LOCALVERSION=' config-mpi >> .config - make olddefconfig -} - -mee_build() { - echo "build $@" - make ${BEE_MAKEFLAGS} -} - -mee_install() { - echo "install $@" - - make modules_install INSTALL_MOD_PATH=${D} - make install INSTALL_PATH=${D}/boot - - rm -v ${D}/lib/modules/${FULLKERNELVERSION}/{source,build} - - ln -sv bzImage-${FULLKERNELVERSION} ${D}/boot/mariux.${PKGREVISION} -}