Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 50 lines (35 sloc) 1.3 KB
#!/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/ee7de65fe41b8e5a272941f0e1f1303a/mariux-5.15.131-457.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}
}