hi all
i want to extract symbol table from a kernel module. since i want resolved addresses with symbols, i couldn't simply do a 'nm' on it but have to link it with kernel (insmod) first.
Tried insmod -m xx.o > syms.txt; but in vain.
plz help...
_Neo_
objdump
what about:
objdump -t xx.[k]o > syms
insmod
both options r same.
i found out the answer..the problem is with configuring busybox..i missed an option- load map in it.
hope this info is useful to all.