Hack-A-N900/Wall Of Bricks: Unterschied zwischen den Versionen

aus Metalab Wiki, dem offenen Zentrum für meta-disziplinäre Magier und technisch-kreative Enthusiasten.
Zur Navigation springenZur Suche springen
Zeile 47: Zeile 47:
 
Result:
 
Result:
 
corrupt partition table
 
corrupt partition table
 +
 +
== Tinkered with preinit scripts ==
 +
How:
 +
<pre>
 +
just do something stupid, pretty early during preinit while running on low battery
 +
</pre>
 +
 +
Result:
 +
Couldn't boot. Couldn't reflash. Until i figured that somehow the device wasn't able to draw enough power via usb for the flashing process.
 +
 +
<i>if you ever should happen to end up there. dont' panic. Remove and reinsert the battery while the device is connected via usb and let it load the battery (don't worry if the led isnt lit). then try again.</i>
  
 
[[Kategorie:N900]]
 
[[Kategorie:N900]]

Version vom 23. April 2010, 13:37 Uhr

Boot loop? hang? Congratulations, you made it! Please share how.
Yellow-brick-road.jpg


Tried to enforce bash as system default shell

How:

rm /bin/sh
ln -s /bin/bash /bin/sh

Result: boot loop.

Tried to overwrite /lib from a running system

How:

cp -a /somewhere/lib/* /lib/

Result:

Malfunction! Device shutdown in 10s









Tried to write a disk image to an extended partition

How:

# /dev/mmcblk0p4 is an extended partition
dd if=image.dd of=/dev/mmcblk0p4

Result: corrupt partition table

Tried to load and execute a custom build kernel during runtime (forced - without shutdown ;))

How:

kexec -f /boot/zImage --command-line="init=/sbin/preinit ubi.mtd=rootfs root=ubi0:rootfs rootfstype=ubifs \
rootflags=bulk_read,no_chk_data_crc rw console=ttyMTD,log console=tty0 snd-soc-rx51.hp_lim=42 snd-soc-tlv320aic3x.hp_dac_lim=6"

Result: corrupt partition table

Tinkered with preinit scripts

How:

just do something stupid, pretty early during preinit while running on low battery

Result: Couldn't boot. Couldn't reflash. Until i figured that somehow the device wasn't able to draw enough power via usb for the flashing process.

if you ever should happen to end up there. dont' panic. Remove and reinsert the battery while the device is connected via usb and let it load the battery (don't worry if the led isnt lit). then try again.