7 lines
114 B
Bash
7 lines
114 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
for patch_file in buildroot-patches/*; do
|
||
|
patch -d buildroot/ -p1 < ${patch_file};
|
||
|
done
|