Advertisement
Guest User

Untitled

a guest
Feb 16th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.48 KB | None | 0 0
  1. # This script assumes fs0 is the SD card
  2. # It may change if you connect USB devices
  3. # DO NOT USE THIS SCRIPT FOR USB BOOT!
  4.  
  5. # GUID for Raspberry Pi Specific Settings
  6. SET GUID CD7CC258-31DB-22E6-9F22-63B0B8EED6B5
  7. ECHO %GUID%
  8.  
  9. # Set CPU Clock to Max (1200Mhz on Pi3B, 1400Mhz on Pi3B+)
  10. SETVAR -guid %GUID% CpuClock =0x00000002
  11. SETVAR -guid %GUID% CpuClock
  12.  
  13. # Move SD Card to the first boot option
  14. bcfg boot mv 2 0
  15.  
  16. # Disable this script
  17. mv fs0:\startup.nsh fs0:\startup.fsh
  18.  
  19. reset
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement