TC's from
http://sourcery.mentor.com/public/gn...linux-gnueabi/
or
Kek Thread:
From Thread:
Example helpful info:
linking shortnames
Quote:
you@dev /opt $ cd /opt/arm-2010q1/bin
you@dev /opt/arm-2010q1/bin $ sudo su
dev bin # for F in `ls -1` ; do ln -sf ${F} ${F#arm-none-linux-gnueabi-} ; done
dev bin # exit
|
Running Apps (the hack way)
An example loader script might read:
./exampleApp.sh
Quote:
#!/bin/sh
cd $( dirname "$0" )
#Get libs - example is libpolarssl
/lib/ld-linux.so.3 --library-path $PWD/lib:/usr/lib:/lib --inhibit-rpath libpolarssl.so.1
#run example app with custom libs
./exampleApp
|
A list of modifications that enable simple access to modifying runtime root environment
http://minimodding.com/article9-Kind...ng-custom-apps
Good luck : )