initial commit
This commit is contained in:
13
scripts/patch_freertos.sh
Executable file
13
scripts/patch_freertos.sh
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
git submodule update --init
|
||||
cd lib/freertos || exit 1
|
||||
|
||||
for patch in ../../patches/freertos/*.patch; do
|
||||
if git apply "$patch"; then
|
||||
echo "Applied patch: $patch"
|
||||
else
|
||||
echo "Failed to apply patch: $patch" >&2
|
||||
exit 1
|
||||
fi
|
||||
done
|
||||
Reference in New Issue
Block a user