9f4a44f932
The raspberrypi-usbboot allows you to flash the eMMC through an USB cable. OBS-URL: https://build.opensuse.org/request/show/800331 OBS-URL: https://build.opensuse.org/package/show/hardware/raspberrypi-rpiboot?expand=0&rev=1
10 lines
264 B
Bash
10 lines
264 B
Bash
#!/bin/bash
|
|
|
|
|
|
git clone --no-single-branch https://github.com/raspberrypi/usbboot.git
|
|
pushd usbboot
|
|
git archive --prefix raspberrypi-rpiboot-$(git log --oneline|wc -l)/ -o ../raspberrypi-rpiboot-$(git log --oneline|wc -l).tar.gz origin/master
|
|
popd
|
|
|
|
rm -rf usbboot
|