Backup mit dfu-util PDF Print E-mail
User Rating: / 1
PoorBest 

Hier eine kurze Anleitung wie mach ein Backup seiner Partitionen erstellt.

1. dfu-util

Als Grundlage wird das dfu-util benötigt, dies gibt es als fertiges Binary oder als Source Code.
Ich persönlich bevorzuge immer den Source Code :D

apt-get install libusb-dev autogen pkg-config autotools-dev autoconf automake
svn co http://svn.openmoko.org/trunk/src/host/dfu-util/
cd dfu-util
./autogen.sh
./configure
make
make install

2. OpenMoko uBoot Menu

Nun müssen wir unseren FreeRunner ins uBoot bringen, dazu schalten wir unser Gerät aus.
Halten AUX gedrückt und schalten das Gerät wieder an. Nun schließen wir das USB Kabel an.

3. Backup Skript

touch openmoko-backup.sh
chmod 777 openmoko.backup.sh

dfu-util -a kernel -R -U good-kernel.bin
dfu-util -a rootfs -R -U good-rootfs.jffs2
dfu-util -a u-boot_env -R -U good-u-boot_env.bin
dfu-util -a splash -R -U good-splash.bin
dfu-util -a u-boot -R -U good-u-boot.bin

Weiterführende Links:

Last Updated on Sunday, 27 July 2008 21:57