2016-03-22 14:13:38 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2017-09-06 11:28:32 +00:00
|
|
|
restore_configs
|
2016-07-16 12:00:43 +00:00
|
|
|
|
2020-02-04 00:06:04 +00:00
|
|
|
EXAMPLES="https://raw.githubusercontent.com/MarlinFirmware/Configurations/bugfix-2.0.x/config/examples"
|
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
|
|
|
|
2020-01-15 05:56:54 +00:00
|
|
|
wget -q "$EXAMPLES/$@/Configuration.h" -O wgot && mv wgot Configuration.h
|
|
|
|
wget -q "$EXAMPLES/$@/Configuration_adv.h" -O wgot && mv wgot Configuration_adv.h
|
|
|
|
wget -q "$EXAMPLES/$@/_Bootscreen.h" -O wgot && mv wgot _Bootscreen.h
|
|
|
|
wget -q "$EXAMPLES/$@/_Statusscreen.h" -O wgot && mv wgot _Statusscreen.h
|
|
|
|
rm -f wgot
|
2018-07-07 02:10:09 +00:00
|
|
|
|
2020-01-15 05:56:54 +00:00
|
|
|
cd - >/dev/null
|