markup_oops.pl: add options to improve cross-sompilation environments
authorHui Zhu <hui.zhu@windriver.com>
Tue, 26 Jan 2010 09:13:07 +0000 (17:13 +0800)
committerMichal Marek <mmarek@suse.cz>
Fri, 5 Feb 2010 21:32:23 +0000 (22:32 +0100)
commit52e13e219d5930fb8fb774050e6ecffa244a60a9
tree377cc7b7603ef21ce2ada4d9a6f5a0e245bad9a0
parentd224a94ab988c01f2841dccd39a518424fd26336
markup_oops.pl: add options to improve cross-sompilation environments

The markup_oops.pl have 3 troubles to support cross-compiler environment:
1.  It use objdump directly.
2.  It use modinfo to get the message of module.
3.  It use hex function that cannot support 64-bit number in 32-bit arch.

This patch add 3 options to markup_oops.pl:
1. -c CROSS_COMPILE Specify the prefix used for toolchain.
2. -m MODULE_DIRNAME Specify the module directory name.
3. Change hex function to Math::BigInt->from_hex.

After this patch, parse the x8664 oops in x86, we can:
cat amd64m | perl ~/kernel/tmp/m.pl -c /home/teawater/kernel/bin/x8664- -m ./e.ko vmlinux

Thanks,
Hui

Signed-off-by: Hui Zhu <teawater@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Arjan van de Ven <arjan@linux.intel.com>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: ozan@pardus.org.tr
Cc: Matthew Wilcox <willy@linux.intel.com>
Acked-by: WANG Cong <xiyou.wangcong@gmail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
scripts/markup_oops.pl