Page 1 of 1
rpiboot (usbboot) git clone instructions
Posted: Thu Mar 21, 2024 8:51 am
by timg236
Previously, the rpiboot tool duplicated some scripts from the rpi-eeprom repo (e.g. rpi-eeprom-config) for modifying the EEPROM images offline and for secure-boot.
Since these scripts are still under development it's best to avoid duplicating them so we've removed them from the `usbboot` repo and included them by using `rpi-eeprom` as a git submodule.
This doesn't change the behaviour of the tool but if you are building this from source then the git clone command changes
To create a new clone
Code: Select all
git clone --recurse-submodules --shallow-submodules --depth=1 https://github.com/raspberrypi/usbboot
To update an existing clone
Code: Select all
git pull --rebase origin master
git submodule update --init
https://github.com/raspberrypi/usbboot? ... e#building