sdk-reset.sh 618 B

123456789101112131415161718192021222324252627282930
  1. #!/bin/bash
  2. ROOT_DIR=$PWD
  3. SUBMOD_ROOT='zephyr framework/bluetooth framework/media framework/display'
  4. echo -e "\n--== git cleanup ==--\n"
  5. west forall -c "git reset --hard"
  6. west forall -c "git clean -d -f -x"
  7. echo -e "\n--== git update ==--\n"
  8. list=`west config manifest.file`
  9. git fetch
  10. if [ "$list" == "west.yml" ]; then
  11. git rebase
  12. fi
  13. west update
  14. echo -e "\n--== submodule update ==--\n"
  15. for i in $SUBMOD_ROOT; do
  16. subdir=$ROOT_DIR/../${i}
  17. cd $subdir
  18. echo -e "\n--== $subdir update ==--\n\n"
  19. git submodule init
  20. git submodule update
  21. if [ $? -ne 0 ]; then
  22. git submodule deinit --all -f
  23. fi
  24. done
  25. cd $ROOT_DIR