Results 1 to 2 of 2
Hello,
I have a driver which has the following format:
"ELF 32-bit LSB shared object, ARM, version 1(SYSV), dynamically linked, not stripped "
and I want to change the format ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 05-07-2012 #1Just Joined!
- Join Date
- May 2012
- Posts
- 1
Change driver format: not stripped to stripped
Hello,
I have a driver which has the following format:
"ELF 32-bit LSB shared object, ARM, version 1(SYSV), dynamically linked, not stripped"
and I want to change the format to the following one:
"ELF 32-bit LSB shared object, ARM, version 1(SYSV), dynamically linked, stripped"
How can I do that? The driver is for a Android device, which is based on a smaller Linux distribution.
Insmod with the not stripped driver aborts. All other drivers on device have the format stripped.
- 05-08-2012 #2Trusted Penguin
- Join Date
- May 2011
- Posts
- 3,664
the strip binary will do this for you. it is typically performed on the binary right after compiling it from source, or better yet, is built into a Makefile for the binary.


Reply With Quote
