Commit 6eb50245c2f830c80d26369d7a40a754c76e81c9

Authored by Dan Pastusek
Committed by GitHub
1 parent 1e27dd85

Add inline comments about boot order

Showing 1 changed file with 11 additions and 0 deletions
recovery/boot.conf
... ... @@ -3,6 +3,17 @@ BOOT_UART=0
3 3 WAKE_ON_GPIO=1
4 4 POWER_OFF_ON_HALT=0
5 5  
  6 +# Boot Order Codes, from https://www.raspberrypi.com/documentation/computers/raspberry-pi.html#BOOT_ORDER
  7 +# 0x0 SD CARD DETECT
  8 +# 0x1 SD CARD
  9 +# 0x2 NETWORK
  10 +# 0x3 RPIBOOT
  11 +# 0x4 USB-MSD
  12 +# 0x5 BCM-USB-MSD
  13 +# 0x6 NVME
  14 +# 0x7 HTTP
  15 +# 0xe STOP
  16 +# 0xf RESTART
6 17 # Try SD first (1), followed by, USB PCIe, NVMe PCIe, USB SoC XHCI then network
7 18 BOOT_ORDER=0xf25641
8 19  
... ...