Advertisement
nikov2002

Untitled

Jun 21st, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. os.loadAPI("System/API/filemanager")
  2. os.loadAPI("system/api/zip")
  3. os.loadAPI("System/API/image")
  4. standartErrorFunction = windows.error
  5. local function textWrite(x,y,text)
  6. term.setCursorPos(x,y)
  7. term.write(text)
  8. end
  9.  
  10. function bs()
  11. term.setTextColor(colors.black)
  12. image.draw(1,1,"/System/os/Bootscr/boot.png")
  13. term.setCursorPos(13,6)
  14. term.setTextColor(colors.red)
  15. term.setCursorPos(14,6)
  16. print("Please, choose rootfs.zip")
  17. textWrite(1,1,"Recovery")
  18. sleep(1)
  19. end
  20.  
  21. function fileopen()
  22. local pathToOpen = filemanager.open("")
  23. if pathToOpen == nil then
  24. drawall()
  25. elseif windows.getFileFormat(pathToOpen) ~= ".zip" then
  26. windows.attention({"Can't open file"},{"This file format","is not supported."})
  27. drawall()
  28. else
  29. image.draw(1,1,"/System/os/Bootscr/boot.png")
  30. term.setTextColor(colors.red)
  31. term.setCursorPos(20,6)
  32. print(" Installing")
  33. shell.run("mkdir temp")
  34. fs.copy(pathToOpen,"/temp/update.zip")
  35. zip.unarchive("/temp/update.zip","/temp")
  36. fs.delete("/system")
  37. fs.delete("/documents")
  38. fs.delete("/startup")
  39. fs.move("/temp/rootfs/system","/system")
  40. fs.move("/temp/rootfs/documents","/documents")
  41. fs.move("temp/rootfs/startup","startup")
  42. os.reboot()
  43. end
  44. end
  45.  
  46. function drawall()
  47. bs()
  48. fileopen()
  49. end
  50.  
  51. drawall()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement