|
2010-11-16
, 19:21
|
|
Posts: 292 |
Thanked: 348 times |
Joined on Aug 2010
@ Rio de Janeiro
|
#682
|
I wanted to install other ipks with nfsu installer, as it will by itself install on MyDocs, so, all I have to do is edit the file in opt/nfsuinstaller?
I looked there and it seems to be the case...
|
2010-11-16
, 20:11
|
Posts: 12 |
Thanked: 0 times |
Joined on Jan 2010
@ Slovenia
|
#683
|
|
2010-11-18
, 08:08
|
|
Posts: 248 |
Thanked: 51 times |
Joined on Jan 2010
@ Amsterdam
|
#684
|
|
2010-11-18
, 08:21
|
Posts: 60 |
Thanked: 13 times |
Joined on Jan 2010
@ Oregon
|
#685
|
|
2010-11-18
, 08:50
|
|
Posts: 248 |
Thanked: 51 times |
Joined on Jan 2010
@ Amsterdam
|
#686
|
|
2010-11-18
, 09:12
|
Posts: 60 |
Thanked: 13 times |
Joined on Jan 2010
@ Oregon
|
#687
|
|
2010-11-18
, 11:07
|
Posts: 946 |
Thanked: 1,650 times |
Joined on Oct 2009
@ Germany
|
#688
|
chmod +x /usr/sbin/ipkinstall
root ipkinstall foo /home/user/MyDocs/foo-1.0.ipk
#!/bin/sh # ipk installation script by titan v0.2 # requires the packages rootsh, preenv, binutils and tar-gnu # packages are installed on eMMC in /home/user/games # example: ipkinst foo /home/user/MyDocs/foo-1.0.ipk if test $# -ne 2; then echo $0 name ipk-file exit 1 fi if test "`id -u`" -ne 0; then echo error: $0 must be run as root exit 1 fi name=$1 pkg=$2 dest=/home/user/games mkdir -p $dest/$name ar p $pkg data.tar.gz | gtar xz -C $dest/$name mv $dest/$name/usr/palm/applications/*/* $dest/$name rm -rf $dest/$name/usr exe=`grep "main" $dest/$name/appinfo.json | awk '{print $2;}' | sed 's/[ ",]//g'` chmod +x $dest/$name/$exe chown -R user.users $dest/$name/ export PREENV_ROOT=/opt/preenv . $PREENV_ROOT/env.sh exec sh -c "desktopgen $dest/$name/appinfo.json"
|
2010-11-18
, 13:13
|
|
Posts: 511 |
Thanked: 128 times |
Joined on Aug 2010
@ Trinidad and Tobago
|
#689
|
|
2010-11-18
, 15:02
|
|
Posts: 248 |
Thanked: 51 times |
Joined on Jan 2010
@ Amsterdam
|
#690
|
Something similar happened to me.
http://talk.maemo.org/showpost.php?p...&postcount=658
" Embora ninguém possa voltar atrás e fazer um novo começo, qualquer um pode começar agora e fazer um novo fim. " Chico Xavier
Try out the Maemo port of gpSP, give feedback, help us develop it more!
Last edited by luiscesjr; 2010-11-16 at 19:23.