replace-softloader.sh.html 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version='1.0' encoding='iso-8859-1'?>
  2. <!doctype html public '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
  3. <html xmlns='http://www.w3c.org/1999/xhtml' lang='en-us'>
  4. <head>
  5. <title>
  6. replace-softloader.sh
  7. </title>
  8. <meta http-equiv='content-type' content='text/html;iso-8859-1'/>
  9. <meta name='generator' content='motley-tools 1.9.4 13:40:33 Feb 18 2015'/>
  10. <meta name='author' content='cmaier@cmassoc.net'/>
  11. <meta name='robots' content='noindex,nofollow'/>
  12. <link href='toolkit.css' rel='stylesheet' type='text/css'/>
  13. </head>
  14. <body>
  15. <div class='headerlink'>
  16. [<a href='pushbutton.sh.html' title=' pushbutton.sh '>PREV</a>]
  17. [<a href='toolkit.html' title=' Index '>HOME</a>]
  18. [<a href='start.sh.html' title=' start.sh '>NEXT</a>]
  19. </div>
  20. <pre>
  21. #!/bin/sh
  22. # this script replaces the intellon softloader with runtime firmware;
  23. # it assumes the softloader is running when the script is started;
  24. # ====================================================================
  25. # file symbols;
  26. # --------------------------------------------------------------------
  27. ETH=eth4
  28. PIB=../firmware/v3.3.6.pib
  29. NVM=../firmware/v3.3.6-0-8-B-RC1.nvm
  30. MAC=00B05200CA08
  31. DAK=689F074B8B0275A2710B0B5779AD1630
  32. NMK=50D3E4933F855B7040784DF815AA8DB7
  33. # ====================================================================
  34. #
  35. # --------------------------------------------------------------------
  36. modpib -M ${MAC} -D ${DAK} -N ${NMK} ${PIB}
  37. int6k -i ${ETH} -P ${PIB} -N ${NVM} -F
  38. int6k -i ${ETH} -P ${PIB} -N ${NVM} -FF
  39. # ====================================================================
  40. #
  41. # --------------------------------------------------------------------
  42. exit 0
  43. </pre>
  44. <div class='footerlink'>
  45. [<a href='pushbutton.sh.html' title=' pushbutton.sh '>PREV</a>]
  46. [<a href='toolkit.html' title=' Index '>HOME</a>]
  47. [<a href='start.sh.html' title=' start.sh '>NEXT</a>]
  48. </div>
  49. </body>
  50. </html>