mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-10 13:45:07 -05:00
* Update BSP and SDK for HiFive board This commit also adds demo start and success/failure output messages.
9 lines
155 B
Bash
Executable file
9 lines
155 B
Bash
Executable file
#!/bin/bash
|
|
|
|
mkdir -p .git/hooks
|
|
cat >.git/hooks/post-commit <<EOF
|
|
#!/bin/bash
|
|
# Generated by $0
|
|
touch -c configure.ac
|
|
EOF
|
|
chmod +x .git/hooks/post-commit
|