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