Subversion Repositories nw_plus

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. #!/bin/bash
  2. mv * ../
  3. cd ../
  4. if [ -e ../NWINTER.GRP ]; then
  5.   mv ../NWINTER.GRP ./
  6. fi
  7. if [ -e NWINTER.GRP ]; then
  8. ./kextract.linux NWINTER.GRP E2L*.MAP
  9. mv E2L1.MAP nwl1.map
  10. mv E2L2.MAP nwl2.map
  11. mv E2L3.MAP nwl3.map
  12. mv E2L4.MAP nwl4.map
  13. mv E2L5.MAP nwl5.map
  14. mv E2L6.MAP nwl6.map
  15. mv E2L7.MAP nwl7.map
  16. mv E2L8.MAP nwl8.map
  17. ./uips.linux a nwl1.ips nwl1.map
  18. ./uips.linux a nwl2.ips nwl2.map
  19. ./uips.linux a nwl3.ips nwl3.map
  20. ./uips.linux a nwl4.ips nwl4.map
  21. ./uips.linux a nwl5.ips nwl5.map
  22. ./uips.linux a nwl6.ips nwl6.map
  23. ./uips.linux a nwl7.ips nwl7.map
  24. ./uips.linux a nwl8.ips nwl8.map
  25.   echo "Patching complete!"
  26. else
  27.   echo "NWINTER.GRP does not exist."
  28.   echo "Run this script again with NWINTER.GRP in this directory."
  29. fi
  30.