Firmware2/buildroot/bin/use_example_configs

19 lines
658 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
IFS=: read -r PART1 PART2 <<< "$@"
[ -n "${PART2}" ] && { REPO="$PART1" ; RDIR="$PART2" ; } \
|| { REPO=bugfix-2.0.x ; RDIR="$PART1" ; }
EXAMPLES="https://raw.githubusercontent.com/MarlinFirmware/Configurations/$REPO/config/examples"
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
wget -q "$EXAMPLES/$RDIR/Configuration.h" -O wgot && mv wgot Configuration.h
wget -q "$EXAMPLES/$RDIR/Configuration_adv.h" -O wgot && mv wgot Configuration_adv.h
wget -q "$EXAMPLES/$RDIR/_Bootscreen.h" -O wgot && mv wgot _Bootscreen.h
wget -q "$EXAMPLES/$RDIR/_Statusscreen.h" -O wgot && mv wgot _Statusscreen.h
2020-01-15 06:56:54 +01:00
rm -f wgot
2020-01-15 06:56:54 +01:00
cd - >/dev/null