mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2024-11-01 12:33:07 +02:00
c6531168f6
This patch changes Qi to insist to fetch device-specific kernels from filesystems that have named kernels. The kernels looked for are now called GTA01: /boot/uImage-GTA01.bin GTA02: /boot/uImage-GTA02.bin GTA03: /boot/uImage-GTA03.bin This is part of the support for single rootfs that can be run on multiple devices with correct kernel and module handling by the bootloader. Signed-off-by: Andy Green <andy@openmoko.com>
8 lines
258 B
Bash
Executable File
8 lines
258 B
Bash
Executable File
#!/bin/bash
|
|
../dfu-util/src/dfu-util -a 1 -d 0x1d50:0x5119 -D image/qi-s3c2442*.udfu
|
|
if [ $? -eq 1 ] ; then
|
|
../dfu-util/src/dfu-util -a 1 -d 0x1d50:0x5120 -D image/qi-s3c2442*.udfu
|
|
../dfu-util/src/dfu-util -a 1 -d 0x1d50:0x5119 -D image/qi-s3c2442*.udfu
|
|
fi
|
|
|