linux-pikaos-template/scripts/patch.sh
Ward from fusion-voyager-3 f7701af36c move to new scripts
2023-11-04 21:34:55 +03:00

6 lines
225 B
Bash
Executable File

#!/bin/bash
echo "Pika Kernel - Applying patches"
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