From ec994eac3236563a488dd1b45e7a16d2222ce69c Mon Sep 17 00:00:00 2001 From: Julien Cretin Date: Fri, 6 Aug 2021 16:43:56 +0200 Subject: [PATCH] Apply all patches in the patches directory --- setup-submodules.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup-submodules.sh b/setup-submodules.sh index e767b78..7ed9288 100755 --- a/setup-submodules.sh +++ b/setup-submodules.sh @@ -43,7 +43,7 @@ echo $done_text # Apply patches to kernel. Do that in a sub-shell. ( cd third_party/tock/ && \ - for p in ../../patches/tock/[0-9][0-9]-*.patch + for p in ../../patches/tock/*.patch do echo -n '[-] Applying patch "'$(basename $p)'"... ' if git apply "$p" @@ -61,7 +61,7 @@ echo $done_text # that case. #( # cd third_party/libtock-rs/ && \ -# for p in ../../patches/libtock-rs/[0-9][0-9]-*.patch +# for p in ../../patches/libtock-rs/*.patch # do # echo -n '[-] Applying patch "'$(basename $p)'"... ' # if git apply "$p"