Create patches.sh

This commit is contained in:
Pascal Vizeli 2018-03-08 16:40:55 +01:00 committed by GitHub
parent eea1794363
commit 64a0530134
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

8
scripts/patches.sh Normal file
View File

@ -0,0 +1,8 @@
#!/bin/bash
set -e
BUILDROOT_PATCHES="buildroot-patches/"
for patch in "$BUILDROOT_PATCHES"; do
patch -d buildroot -p1 < $${patch};
done