Here's my current script
```bash
#1/bin/bash

PATCH_DIR=../build/patch/kernel/meson64-dev

cd linux-pinebook-pro

echo Applying patches in $(pwd)
for i in $PATCH_DIR/04*; do
    echo applying $(basename "$i")
    git apply $i
done
```

I didn't expect this to work first try. I'm trying to patch the Manjaro ARM kernel with patches to enable the Hantro VPU drivers so it's very unlikely this will go smoothly.