linux-pikaos-6.11.0/scripts/patch.sh

9 lines
265 B
Bash
Raw Permalink Normal View History

2024-08-30 14:06:11 +02:00
#!/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