1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #!/usr/bin/env bash
- #
- # use_example_configs [repo:]configpath
- #
- # Examples:
- # use_example_configs
- # use_example_configs Creality/CR-10/CrealityV1
- # use_example_configs release-2.0.9.4:Creality/CR-10/CrealityV1
- #
- # If a configpath has spaces (or quotes) escape them or enquote the path
- # If no branch: prefix is given use configs based on the current branch name.
- # e.g., For `latest-2.1.x` name the working branch something like "my_work-2.1.x."
- # The branch or tag must first exist at MarlinFirmware/Configurations.
- # The fallback branch is bugfix-2.1.x.
- #
- which curl >/dev/null && TOOL='curl -L -s -S -f -o wgot'
- which wget >/dev/null && TOOL='wget -q -O wgot'
- CURR=$(git branch 2>/dev/null | grep ^* | sed 's/\* //g')
- case "$CURR" in
- bugfix-2.*.x ) BRANCH=$CURR ;;
- *-2.1.x|2.1.x ) BRANCH=latest-2.1.x ;;
- *-2.0.x|2.0.x ) BRANCH=latest-2.0.x ;;
- *-1.1.x|1.1.x ) BRANCH=latest-1.1.x ;;
- *-1.0.x|1.0.x ) BRANCH=latest-1.0.x ;;
- * ) BRANCH=bugfix-2.1.x ;;
- esac
- if [[ $# > 0 ]]; then
- IFS=: read -r PART1 PART2 <<< "$@"
- [[ -n $PART2 ]] && { UDIR="$PART2" ; BRANCH="$PART1" ; } \
- || { UDIR="$PART1" ; }
- RDIR="${UDIR// /%20}"
- echo "Fetching $UDIR configurations from $BRANCH..."
- EXAMPLES="examples/$RDIR"
- else
- EXAMPLES="default"
- fi
- CONFIGS="https://raw.githubusercontent.com/MarlinFirmware/Configurations/$BRANCH/config/${EXAMPLES}"
- restore_configs
- cd Marlin
- $TOOL "$CONFIGS/Configuration.h" >/dev/null 2>&1 && mv wgot Configuration.h
- $TOOL "$CONFIGS/Configuration_adv.h" >/dev/null 2>&1 && mv wgot Configuration_adv.h
- $TOOL "$CONFIGS/_Bootscreen.h" >/dev/null 2>&1 && mv wgot _Bootscreen.h
- $TOOL "$CONFIGS/_Statusscreen.h" >/dev/null 2>&1 && mv wgot _Statusscreen.h
- rm -f wgot
- cd - >/dev/null
|