Skip to content
Permalink
main
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 26 lines (20 sloc) 623 Bytes
#! /bin/bash
set -e
export TEMPDIR=${TEMPDIR:-/scratch/local}
releases=(
5.10.103-429
5.10.110-433
)
for release in "${releases[@]}"; do
test -d $TMPDIR/linux-$release.x86_64 || (cd $TMPDIR && tar xf /src/mariux/beeroot/build-archives/linux-$release.x86_64.beebuild.tar.bz2)
(
cd fix-uring
KERNEL=$TMPDIR/linux-$release.x86_64/build make clean
KERNEL=$TMPDIR/linux-$release.x86_64/build make
)
ver=${release%-*} # 5.10.92
build=${release#*-} # 421
echo "release $release ver $ver build $build"
mkdir -p out/$ver.mx64.$build
cp fix-uring/fix-uring.ko out/$ver.mx64.$build/fix-uring.ko
done