sdk-reset.sh 472 B

123456789101112131415161718192021222324
  1. #!/bin/bash -e
  2. ROOT_DIR=$PWD
  3. SUBMOD_ROOT='zephyr framework/bluetooth framework/media'
  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. git fetch
  9. git rebase
  10. west update
  11. echo -e "\n--== submodule update ==--\n"
  12. for i in $SUBMOD_ROOT; do
  13. subdir=$ROOT_DIR/../${i}
  14. cd $subdir
  15. echo -e "\n--== $subdir update ==--\n\n"
  16. git submodule init
  17. git submodule update
  18. done
  19. cd $ROOT_DIR