-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
linux, nvidia_linux: Add version 6.6.35
- Loading branch information
Showing
2 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/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" | ||
|
||
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_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 -rf ${D}/lib/modules/${FULLKERNELVERSION}/{source,build} | ||
|
||
ln -sv bzImage-${FULLKERNELVERSION} ${D}/boot/mariux.${PKGREVISION} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#!/bin/env beesh | ||
|
||
NVIDIA_ARCHIVE="NVIDIA-Linux-x86_64-${PKGVERSION}.run" | ||
|
||
#SRCURL[0]="https://de.download.nvidia.com/XFree86/Linux-x86_64/$PKGVERSION/NVIDIA-Linux-x86_64-$PKGVERSION.run" | ||
SRCURL[0]="https://beehive.molgen.mpg.de/0bb10ef32e86d5e1ad37b710dac6e079/NVIDIA-Linux-x86_64-535.104.05.run" | ||
|
||
PATCHURL+=() | ||
|
||
LINUXPKG=${PKGEXTRANAME}.${ARCH} | ||
|
||
LINUXKLOCALVER=$(beeversion --format "%v.mx64.%r" "${LINUXPKG}") | ||
|
||
# '4.4.mx64.75' to '4.4.0.mx64.75' | ||
if [[ $LINUXKLOCALVER =~ ^([0-9]+\.[0-9]+)(\.mx64.*) ]]; then | ||
LINUXKLOCALVER="${BASH_REMATCH[1]}.0${BASH_REMATCH[2]}" | ||
fi | ||
|
||
|
||
build_in_sourcedir | ||
sourcesubdir_append kernel | ||
|
||
: ${BEE_TMP_TMPDIR:=/tmp} | ||
|
||
# fix tar option for user namespace usage (`unshare -U -r BEEFILE`) | ||
export TAR_OPTIONS=--no-same-owner | ||
|
||
mee_extract() { | ||
rmdir ${S} | ||
start_cmd sh ${F}/${NVIDIA_ARCHIVE} -x --target ${S} | ||
|
||
if [ ! -d "${BEE_TMP_TMPDIR}/${LINUXPKG}/source" ] ; then | ||
start_cmd gtar -xf ${BEE_BUILDARCHIVEDIR}/${LINUXPKG}.beebuild.tar.bz2 -C ${BEE_TMP_TMPDIR} | ||
fi | ||
LINUXSRCDIR="${BEE_TMP_TMPDIR}/${LINUXPKG}/source" | ||
} | ||
|
||
mee_build() { | ||
make SYSSRC=${LINUXSRCDIR} CC=gcc module | ||
} | ||
|
||
mee_install() { | ||
mkdir -pv ${D}${DATAROOTDIR}/nvidia/kernel/${LINUXKLOCALVER}/${PKGVERSION} | ||
|
||
cp -v *.ko ${D}${DATAROOTDIR}/nvidia/kernel/${LINUXKLOCALVER}/${PKGVERSION}/ | ||
|
||
ln -s ${PKGVERSION} ${D}${DATAROOTDIR}/nvidia/kernel/${LINUXKLOCALVER}/current | ||
} |