initial commit

This commit is contained in:
2024-12-15 00:34:01 +06:00
commit 31efbc726f
1576 changed files with 657692 additions and 0 deletions

13
scripts/patch_freertos.sh Executable file
View 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