From 64a05301342e4abdb81fcda1cf5b757f3d434f72 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Thu, 8 Mar 2018 16:40:55 +0100 Subject: [PATCH] Create patches.sh --- scripts/patches.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 scripts/patches.sh diff --git a/scripts/patches.sh b/scripts/patches.sh new file mode 100644 index 000000000..c35a68850 --- /dev/null +++ b/scripts/patches.sh @@ -0,0 +1,8 @@ +#!/bin/bash +set -e + +BUILDROOT_PATCHES="buildroot-patches/" + +for patch in "$BUILDROOT_PATCHES"; do + patch -d buildroot -p1 < $${patch}; +done