Assorted fixes/cleanups
1 unresolved thread
1 unresolved thread
Nothing controversial, just a few fixes to the build-system/docs-build.
Merge request reports
Activity
changed milestone to %v1.16
added 3-Build 5-Documentation 6 - Needs Review labels
added 1 commit
- ab85e58f - fix(build_multi_image): Add size check for epicardium binary
added 8 commits
-
ab85e58f...7422956c - 4 commits from branch
master
- b79d1f62 - fix(build): Disable -Wchar-subscripts warnings
- cda44b6c - fix(build_multi_image): Use objcopy instead of tr hack
- 65eb59b4 - fix(docs): Add a warning when using Sphinx 3
- b9ebcd15 - fix(build_multi_image): Add size check for epicardium binary
Toggle commit list-
ab85e58f...7422956c - 4 commits from branch
6 6 BIN2="$3" 7 7 BINOUT="$4" 8 8 9 dd if=/dev/zero ibs=1k count=448 2>/dev/null | LANG=C LC_CTYPE=C LC_ALL=C LC_COLLATE=C tr "\000" "\377" > "$BINOUT" 10 dd if="$BIN1" of="$BINOUT" conv=notrunc 2>/dev/null 11 dd if="$BIN2" >> "$BINOUT" 2>/dev/null 9 if [ "$(stat -c "%s" "${BIN1}")" -gt 458752 ]; then 10 echo "$0: ${BIN1} is too big to fit!" >&2 11 exit 1 12 fi 13 14 objcopy -I binary -O binary --pad-to=458752 --gap-fill=255 "${BIN1}" "$BINOUT" I actually stumbled across this trick by accident here while at work and though Wait a minute, didn't we do something like this for card10? So here we are :D
mentioned in commit 23aa643b
Please register or sign in to reply