-
-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Major Bug Fixes and Improvements (Fixes #61) #62
Conversation
- Extended build-script sysroot patch to `RTBuilder_32b`. - Replaced incorrect `RPI_TYPE` with `FOLDER_VERSION`. - Replaced `OS_TYPE` with `RPIOS_TYPE` in `RTBuilder_64b. - Added Buster and Stretch native support for `RTBuilder_64b` build script.
- Updated CI Bash scripts with new `-o` flag to support OS selection. - Updated YAMLs to include buster & stretch Pi OS support. - Updated and added new docs.
build-scripts/RTBuilder_32b
Outdated
VERBOSE=1 | ||
echo "Info: Activated verbose output!" | ||
echo "" | ||
set -eov pipefail # Set verbose mode. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm. The script will fail on error only if someone chooses the verbose option. Errors would still be silently ignored otherwise.
Wouldn't it make sense to put set -eo pipefail
at the top of every script and call set -v
during cmdline parsing in scripts which support the verbose option?
* Strip on compiler install (#39) * This drastically reduces extracted size from 1.7GB to 477MB * Followup to pull request #62 * Set "set -eo pipefail" at top of script. Set "set -v" only for verbose mode * Fix wget download of linux kernel * The out wget was failing because of multiple lines. Only consider topmost line with most recent file)
"set -eo pipefail" is already set at top of script.
Strip compiler executables and minor fixes
- Updated strip patch for all bash-scripts for smaller binary size. - Updated assets. - Updated docs.
Fixes #61