My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

use_example_configs 1.2KB

1234567891011121314151617181920212223242526272829303132333435
  1. #!/usr/bin/env bash
  2. #
  3. # use_example_configs [repo:]configpath
  4. #
  5. # Examples:
  6. # use_example_configs Creality/CR-10/CrealityV1
  7. # use_example_configs release-2.0.9.4:Creality/CR-10/CrealityV1
  8. #
  9. # If a configpath has spaces (or quotes) escape them or enquote the path
  10. #
  11. CURR=$(git branch 2>/dev/null | grep ^* | sed 's/\* //g')
  12. [[ $CURR == "bugfix-2.0.x" ]] && BRANCH=bugfix-2.0.x || BRANCH=bugfix-2.1.x
  13. IFS=: read -r PART1 PART2 <<< "$@"
  14. [[ -n $PART2 ]] && { REPO="$PART1" ; RDIR="${PART2// /%20}" ; } \
  15. || { REPO=$BRANCH ; RDIR="${PART1// /%20}" ; }
  16. EXAMPLES="https://raw.githubusercontent.com/MarlinFirmware/Configurations/$REPO/config/examples"
  17. which curl >/dev/null && TOOL='curl -L -s -S -f -o wgot'
  18. which wget >/dev/null && TOOL='wget -q -O wgot'
  19. restore_configs
  20. cd Marlin
  21. echo "Fetching $RDIR configurations from $REPO..."
  22. $TOOL "$EXAMPLES/$RDIR/Configuration.h" >/dev/null 2>&1 && mv wgot Configuration.h
  23. $TOOL "$EXAMPLES/$RDIR/Configuration_adv.h" >/dev/null 2>&1 && mv wgot Configuration_adv.h
  24. $TOOL "$EXAMPLES/$RDIR/_Bootscreen.h" >/dev/null 2>&1 && mv wgot _Bootscreen.h
  25. $TOOL "$EXAMPLES/$RDIR/_Statusscreen.h" >/dev/null 2>&1 && mv wgot _Statusscreen.h
  26. rm -f wgot
  27. cd - >/dev/null