This repository has been archived on 2022-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
Marlin-Artillery-M600/buildroot/bin/restore_configs

18 lines
433 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
2020-01-15 06:56:54 +01:00
RESTORE="https://raw.githubusercontent.com/MarlinFirmware/Configurations/master/config/default"
2020-01-15 06:56:54 +01:00
cd Marlin
rm -f Conf*.h _*screen.h
PINS="src/pins"
2019-07-11 09:32:24 +02:00
RAMPS="$PINS/ramps/pins_RAMPS.h"
BKUP="$PINS/ramps/pins_RAMPS.backup.h"
[ -f $BKUP ] && { cp "$BKUP" "$RAMPS" ; rm -f $BKUP ; }
2020-01-15 06:56:54 +01:00
wget -q "$RESTORE/Configuration.h" -O Configuration.h
wget -q "$RESTORE/Configuration_adv.h" -O Configuration_adv.h
cd - >/dev/null