replace-softloader.sh 900 B

123456789101112131415161718192021222324252627282930
  1. #!/bin/sh
  2. # this script replaces the intellon softloader with runtime firmware;
  3. # it assumes the softloader is running when the script is started;
  4. # ====================================================================
  5. # file symbols;
  6. # --------------------------------------------------------------------
  7. ETH=eth4
  8. PIB=../firmware/v3.3.6.pib
  9. NVM=../firmware/v3.3.6-0-8-B-RC1.nvm
  10. MAC=00B05200CA08
  11. DAK=689F074B8B0275A2710B0B5779AD1630
  12. NMK=50D3E4933F855B7040784DF815AA8DB7
  13. # ====================================================================
  14. #
  15. # --------------------------------------------------------------------
  16. modpib -M ${MAC} -D ${DAK} -N ${NMK} ${PIB}
  17. int6k -i ${ETH} -P ${PIB} -N ${NVM} -F
  18. int6k -i ${ETH} -P ${PIB} -N ${NVM} -FF
  19. # ====================================================================
  20. #
  21. # --------------------------------------------------------------------
  22. exit 0