linux-pikaos-6.12.1/scripts/patch.sh
Kernel Packages Group fc878d9d3b Initial commit
2024-11-04 21:25:11 +01:00

9 lines
265 B
Bash
Executable File

#!/bin/bash
echo "Pika Kernel - Applying patches"
if [ -f ../patches/series ]
then
for i in $(cat ../patches/series | grep -v '^#') ; do echo "Applying Patch: $i" && patch -Np1 -i ../patches/$i || bash -c "echo "Applying Patch $i Failed!" && exit 2"; done
fi