So bekommt man
Busybox auf dem G1
ohne Root ans Laufen:
------------------------------------------------------
1.
Busybox.xxx downloaden
2. auf die
SD kopieren:
adb push busybox.xxx /sdcard
3. ins Flash schieben:
adb shell
$ dd if=/sdcard/busybox.xxx of=/data/local/busybox
4. ausführbar machen:
$ chmod 4777 /data/local/busybox
5. PATH setzen:
$ export PATH=/data/local:$PATH
6. paar Symlinks erzeugen:
$ cd /data/local
$ busybox cp -s busybox cp
$ cp -s busybox env
$ cp -s busybox ls
etc.
---------------------------------------------------------
Vielen Dank an Onkel Google für freundliche Unterstützung.