]> git.baikalelectronics.ru Git - kernel.git/commit
scripts: add ARM support to decodecode
authorRabin Vincent <rabin@rab.in>
Tue, 5 Jan 2010 14:57:58 +0000 (20:27 +0530)
committerMichal Marek <mmarek@suse.cz>
Tue, 2 Feb 2010 13:33:54 +0000 (14:33 +0100)
commita3ab2d8fffdf1b0050937acca950215db9c50dfb
tree02eb5cb3a1d93b80b5db7ab2338822b272f84a84
parent54aa618b57f0b52cbf2b274ff964b6f49c8a397b
scripts: add ARM support to decodecode

This patch adds support for decoding ARM oopses to scripts/decodecode.
The following things are handled:

 - ARCH and CROSS_COMPILE environment variables are respected.

 - The Code: in x86 oopses is in bytes, while it is in either words (4
   bytes) or halfwords for ARM.

 - Some versions of ARM objdump refuse to disassemble instructions
   generated by literal constants (".word 0x...").  The workaround is to
   strip the object file first.

 - The faulting instruction is marked (liked so) in ARM, but <like so>
   in x86.

 - ARM mnemonics may include characters such as [] which need to be
   escaped before being passed to sed for the "<- trapping instruction"
   substitution.

Signed-off-by: Rabin Vincent <rabin@rab.in>
Signed-off-by: Michal Marek <mmarek@suse.cz>
scripts/decodecode