This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script generates the Code Sourcery ARM EABI Toolchain on MAC OS X 10.7 | |
# | |
# The main trick here is the possibility to build previous versions, required | |
# when maintaining older projects that no longer build with newer version. | |
# | |
# The new toolchain is installed at | |
# "$HOME/Developer/Cross/arm-cs-tools-$MENTOR_RELEASE-$TODAY" | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
# Usage: | |
# rsync_parallel.sh [--parallel=N] [rsync args...] | |
# | |
# Options: | |
# --parallel=N Use N parallel processes for transfer. Defaults to 10. | |
# | |
# Notes: |
NewerOlder