mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2024-11-01 18:31:54 +02:00
8 lines
240 B
Plaintext
8 lines
240 B
Plaintext
|
#!/bin/bash
|
||
|
../dfu-util/src/dfu-util -a 1 -d 0x1d50:0x5119 -D image/kboot.udfu
|
||
|
if [ $? -eq 1 ] ; then
|
||
|
../dfu-util/src/dfu-util -a 1 -d 0x1d50:0x5120 -D image/kboot.udfu
|
||
|
../dfu-util/src/dfu-util -a 1 -d 0x1d50:0x5119 -D image/kboot.udfu
|
||
|
fi
|
||
|
|