2016-03-22 14:13:38 +00:00
|
|
|
#!/usr/bin/env bash
|
2022-06-07 00:06:03 +00:00
|
|
|
#
|
|
|
|
# use_example_configs [repo:]configpath
|
|
|
|
#
|
|
|
|
# Examples:
|
2022-07-26 19:54:54 +00:00
|
|
|
# use_example_configs
|
2022-06-07 00:06:03 +00:00
|
|
|
# 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
|
2023-11-22 07:35:46 +00:00
|
|
|
# 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.
|
2022-06-07 00:06:03 +00:00
|
|
|
#
|
2016-03-22 14:13:38 +00:00
|
|
|
|
2022-07-16 21:11:33 +00:00
|
|
|
which curl >/dev/null && TOOL='curl -L -s -S -f -o wgot'
|
|
|
|
which wget >/dev/null && TOOL='wget -q -O wgot'
|
|
|
|
|
2022-06-07 00:06:03 +00:00
|
|
|
CURR=$(git branch 2>/dev/null | grep ^* | sed 's/\* //g')
|
2023-11-22 07:35:46 +00:00
|
|
|
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
|
2016-07-16 12:00:43 +00:00
|
|
|
|
2022-07-16 21:11:33 +00:00
|
|
|
if [[ $# > 0 ]]; then
|
|
|
|
IFS=: read -r PART1 PART2 <<< "$@"
|
2023-11-22 07:35:46 +00:00
|
|
|
[[ -n $PART2 ]] && { UDIR="$PART2" ; BRANCH="$PART1" ; } \
|
2022-07-16 21:11:33 +00:00
|
|
|
|| { UDIR="$PART1" ; }
|
|
|
|
RDIR="${UDIR// /%20}"
|
2023-11-22 07:35:46 +00:00
|
|
|
echo "Fetching $UDIR configurations from $BRANCH..."
|
2022-07-16 21:11:33 +00:00
|
|
|
EXAMPLES="examples/$RDIR"
|
|
|
|
else
|
|
|
|
EXAMPLES="default"
|
|
|
|
fi
|
|
|
|
|
2023-11-22 07:35:46 +00:00
|
|
|
CONFIGS="https://raw.githubusercontent.com/MarlinFirmware/Configurations/$BRANCH/config/${EXAMPLES}"
|
2020-08-10 06:44:11 +00:00
|
|
|
|
2020-07-30 06:43:19 +00:00
|
|
|
restore_configs
|
2018-10-13 02:15:54 +00:00
|
|
|
|
2020-01-15 05:56:54 +00:00
|
|
|
cd Marlin
|
2017-09-06 11:28:32 +00:00
|
|
|
|
2022-07-16 21:11:33 +00:00
|
|
|
$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
|
2018-07-07 02:10:09 +00:00
|
|
|
|
2020-08-10 06:44:11 +00:00
|
|
|
rm -f wgot
|
2020-01-15 05:56:54 +00:00
|
|
|
cd - >/dev/null
|