linux-pikaos-6.10.10/scripts/patch.sh
Kernel Packages Group d92ac5441d Initial commit
2024-08-15 20:05:02 +02: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