User:Redatim

redatim (Talk | contribs)
(New page: == Raw Kernel Commands == '''Get the internal kernel size:''' xxd -ps -s 2092 -l 4 /dev/mtd3 | sed 's/\(..\)\(..\)\(..\)\(..\)/0x\4\3\2\1/' '''Dump the internal kernel:''' dd if=/dev/m...)
Newer edit →

Revision as of 23:20, 21 July 2010

Raw Kernel Commands

Get the internal kernel size:

xxd -ps -s 2092 -l 4 /dev/mtd3 | sed 's/\(..\)\(..\)\(..\)\(..\)/0x\4\3\2\1/'

Dump the internal kernel:

dd if=/dev/mtd3 of=vmlinuz-`uname -r` bs=1 seek=2048 count=$((`xxd -ps -s 2092 -l 4 /dev/mtd3 | sed 's/\(..\)\(..\)\(..\)\(..\)/0x\4\3\2\1/'`))