View Single Post
Posts: 2,076 | Thanked: 3,268 times | Joined on Feb 2011
#10
Bummer... Not sure if it is adom binary fataling out, or maybe the provided libc-2.13.so that is too new. Managed to run the adom binary on N900's ld-2.5/libc by modifying the run file to this:
Code:
scr=`readlink -f $0`
if [ $? != 0 ]; then
  echo No busybox, you must run this from the adom directory
  dir=$PWD
else
  dir=`dirname $scr`
fi

lib=/lib
export HOME=$dir
export TERMINFO=$lib/terminfo
exec $lib/ld-2.5.so --library-path $lib $dir/adom
Make sure ld-2.5.so is so named in diablo, (running 'ls /lib/ld*' should tell you that, change the last line accordingly) libs folder can be deleted at this point, so only files needed are run script and adom raspbian binary. When trying to run it cried missing libtinfo.so, symlink to libncurses did the trick:
Code:
cd /lib
sudo ln -s libncurses.so.5 libtinfo.so.5
At this point 'run' managed to start adom with only maemo libs I believe. Probably won't help, but maybe worth a shot

Last edited by szopin; 2012-10-07 at 13:04.
 

The Following 2 Users Say Thank You to szopin For This Useful Post: