[19. April 2013] A-400 Advanced Network Setup now available | [11 Jan. 2013] Customize your A-400 Home Screen

Firmware: A-400 [13 May 2013] | C-300 [30 Nov. 2012] | A-300 [30 Nov. 2012] | C-200 [21 Jan. 2013] | A-200/A-210 [10 Aug. 2012]

Just got your NMT | WIKI has the answers | Search the forum | Forum Rules/Policy | Firmware & Official NMT News | Popcornhour manuals



User(s) browsing this thread: 1 Guest(s)
Post Reply 
[Apps] opkg A100/A110 - Updated 21st Sep
12-22-2010, 09:41 AM
Post: #31
RE: [Apps] I-pkg A100/A110 - Updated 20th Dec
(12-22-2010 09:35 AM)macma Wrote:  On popcorn a110 /usr/local/bin doesn't exits. I made dir 'local' manually in /usr/ and put there symbolic link 'bin' to /share/Apps/local/bin.
But after reboot it's disappear Sad

Probably because of that I can't run automatically start scripts in /share/Apps/local/etc/rc.d/init.d/ after popcorn restart.

I-pkg web gui doesn't show installed apps etc.

Regards,
macma
The startup script in the ipkg already doing the linking of /share/Apps/local to /usr/local upon reboot. Smile

Sriram
C200/A400/RPi - Onkyo HT-S3400 - LG 47LV3730
Find all posts by this user
Add Thank You Quote this message in a reply
12-22-2010, 05:56 PM
Post: #32
RE: [Apps] I-pkg A100/A110 - Updated 20th Dec
(12-22-2010 09:41 AM)vaidyasr Wrote:  The startup script in the ipkg already doing the linking of /share/Apps/local to /usr/local upon reboot. Smile

I have to fix daemon.sh because 'local' doesn't exist it will never create link.

Code:
create_dir()
{
    cd /usr
    if [ -d "local" ]; then
        mv ./local ./local.org
    fi
    ln -s /share/Apps/local local
    echo "Done<br>"
}

I also found that package smartmontools_5.40-1_mipsel.ipk puts init script in wrong place to '\share\Apps\local\etc\rc.d\init.d\smartd' instead of '\share\Apps\local\etc\init.d\smartd'

There is also some limitation that You execute only files with *.sh extension but smartd have no extension.

Regards,
Macma
Find all posts by this user
Add Thank You Quote this message in a reply
12-23-2010, 02:12 AM
Post: #33
RE: [Apps] I-pkg A100/A110 - Updated 20th Dec
(12-22-2010 05:56 PM)macma Wrote:  I have to fix daemon.sh because 'local' doesn't exist it will never create link.

Code:
create_dir()
{
    cd /usr
    if [ -d "local" ]; then
        mv ./local ./local.org
    fi
    ln -s /share/Apps/local local
    echo "Done<br>"
}

I also found that package smartmontools_5.40-1_mipsel.ipk puts init script in wrong place to '\share\Apps\local\etc\rc.d\init.d\smartd' instead of '\share\Apps\local\etc\init.d\smartd'

There is also some limitation that You execute only files with *.sh extension but smartd have no extension.

Regards,
Macma
Thanks, I'll fix the both and update the packages. Smile

So, the packages are working fine?

Sriram
C200/A400/RPi - Onkyo HT-S3400 - LG 47LV3730
Find all posts by this user
Add Thank You Quote this message in a reply
12-23-2010, 08:28 AM
Post: #34
RE: [Apps] I-pkg A100/A110 - Updated 20th Dec
Packages added:
Code:
popt, slang, libpng, pcre, fdisk, parted, readline, e2fsprogs-libs, check, bison, flex, gzip, unrar, bzip2, aria2

Sriram
C200/A400/RPi - Onkyo HT-S3400 - LG 47LV3730
Find all posts by this user
Add Thank You Quote this message in a reply
12-23-2010, 10:27 AM (This post was last modified: 12-23-2010 11:25 AM by macma.)
Post: #35
RE: [Apps] I-pkg A100/A110 - Updated 20th Dec
(12-23-2010 02:12 AM)vaidyasr Wrote:  Thanks, I'll fix the both and update the packages. Smile

So, the packages are working fine?

I have problem with start aria2c when restart popcorn.
I craete script to run aria and put in to '\share\Apps\local\etc\init.d\'

Code:
#!/bin/sh

MaxOverallDownloadLimit=0
MaxConcurrentDownloads=2
MaxConnectionPerServer=4

utildir="/share/Apps/local"

PATH=/usr/bin:/bin:/usr/sbin:/sbin:/opt/syb/sigma/bdj/jvm/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/bin/X11:/usr/local/bin:/opt/syb/app/bin:/opt/syb/app/sbin:/opt/syb/sigma/bin:/usr/local/bin:/share/Apps/utils/bin/:/opt/syb/sigma/bdj/jvm/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/bin/X11:/usr/local/bin:/opt/syb/app/bin:/opt/syb/app/sbin:/opt/syb/sigma/bin:/usr/local/bin:/share/Apps/lighttpd/bin:${utildir}/bin/
export PATH

LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/lib:/opt/syb/sigma/bdj:/opt/syb/sigma/bdj/jvm/lib:/opt/syb/sigma/bdj/bdj/lib:/opt/syb/app/lib:/opt/syb/sigma/lib:/share/Apps/Qt/lib:/share/Apps/lighttpd/lib:/usr/local/lib:${utildir}/lib/
export LD_LIBRARY_PATH

ARIA2C=${utildir}/bin/aria2c

startAria2c()
{
    echo "Starting Aria2c"
    ${ARIA2C}  --enable-xml-rpc --xml-rpc-listen-all=true --dir=/share/Download \
        --max-overall-download-limit=${MaxOverallDownloadLimit} \
        --max-concurrent-downloads=${MaxConcurrentDownloads} \
        --max-connection-per-server=${MaxConnectionPerServer} \
        --log=/var/log/aria2c.log \
        --auto-save-interval=1 --max-tries=5 --use-head=false --log-level=info --event-poll=select \
        --quiet=true & $ECHO $! >/var/tmp/.pid_aria2c
}

stopAria2c()
{
   if [ -f "/var/tmp/.pid_aria2c" ]
   then
    PID=`$CAT /var/tmp/.pid_aria2c`
        echo "Killing Aria2c pid: $PID"
    if [ -d /proc/$PID ]
    then
        kill -9 $PID
        rm -f /var/tmp/.pid_aria2c
        echo "Aria2c killed"
       fi
   fi    
}


case "$1" in
    start)
    startAria2c;
    exit
    ;;
    
    stop)
    stopAria2c;
    exit
    ;;
    
    restart)
    stopAria2c;
    startAria2c;
    exit
    ;;
esac

When I run /share/Apps/local/daemon.sh manually everything working fine but wen I reboot popcorn I get error in /share/Apps/local/.daemonresult :
/share/Apps/local/bin/aria2c: can't load library 'libiconv.so.2'

What could be the cause of it. Is aria using RPATH? On a110 libiconv.so.2 is in /lib directory.

I can't run i-pkg web gui Sad
Regrads,
Macma
(12-23-2010 08:28 AM)vaidyasr Wrote:  Packages added:
Code:
popt, slang, libpng, pcre, fdisk, parted, readline, e2fsprogs-libs, check, bison, flex, gzip, unrar, bzip2, aria2

There is problem with package 'check' and 'sed' because they supply the same files:

root@PCH-A110 lists# ipkg install parted
Installing parted (1.9.0-1) to root...
Downloading http://biznetnetworks.dl.sourceforge.net...mipsel.ipk
Installing check (0.9.8-1) to root...
Downloading http://biznetnetworks.dl.sourceforge.net...mipsel.ipk
An error ocurred, return value: 1.
Collected errors:
Package check wants to install file /share/Apps/local/share/info/dir
But that file is already provided by package sed

Regards,
macma
Find all posts by this user
Add Thank You Quote this message in a reply
12-23-2010, 11:49 AM
Post: #36
RE: [Apps] I-pkg A100/A110 - Updated 20th Dec
If you are feeling for an adventure you can do
# ipkg --force-overwrite install parted

(or something along those lines, check ipkg --help)

Audio, video, disco - I hear, I see, I learn.
Wiki. Wiki? Wiki!
Find all posts by this user
Add Thank You Quote this message in a reply
12-23-2010, 11:59 AM
Post: #37
RE: [Apps] I-pkg A100/A110 - Updated 20th Dec
(12-23-2010 10:27 AM)macma Wrote:  When I run /share/Apps/local/daemon.sh manually everything working fine but wen I reboot popcorn I get error in /share/Apps/local/.daemonresult :
/share/Apps/local/bin/aria2c: can't load library 'libiconv.so.2'

What could be the cause of it. Is aria using RPATH? On a110 libiconv.so.2 is in /lib directory.

The issue happened which is same as in C200.
In the /lib directory some of the files will be linked (for example libiconv.so) from /mnt/syb... directory after the A110 boots up. Since the aria2c is trying to load the binaries before the symbolic link happens, the error occurs. can you please send me the 'ls -l /lib' from your a110 and list here?. so that I can add the RPATH in next release of aria2

Sriram
C200/A400/RPi - Onkyo HT-S3400 - LG 47LV3730
Find all posts by this user
Add Thank You Quote this message in a reply
12-23-2010, 01:13 PM
Post: #38
RE: [Apps] I-pkg A100/A110 - Updated 20th Dec
(12-23-2010 11:59 AM)vaidyasr Wrote:  The issue happened which is same as in C200.
In the /lib directory some of the files will be linked (for example libiconv.so) from /mnt/syb... directory after the A110 boots up. Since the aria2c is trying to load the binaries before the symbolic link happens, the error occurs. can you please send me the 'ls -l /lib' from your a110 and list here?. so that I can add the RPATH in next release of aria2

Code:
drwxr-xr-x    7 539      500             0 Aug 16 07:12 directfb-1.0-0
drwxr-xr-x    2 539      root            0 Jan  1  2000 engines
lrwxrwxrwx    1 root     root           24 Dec 23 11:45 json.la -> /mnt/syb8634/lib/json.la
lrwxrwxrwx    1 root     root           24 Dec 23 11:45 json.so -> /mnt/syb8634/lib/json.so
-rwxr-xr-x    1 539      root        20560 Jan  1  2000 ld-uClibc-0.9.28.so
lrwxrwxrwx    1 539      root           19 Jan  1  2000 ld-uClibc.so.0 -> ld-uClibc-0.9.28.so
lrwxrwxrwx    1 539      500             6 Jan  1  2000 lib -> ../lib
-rwxr-xr-x    1 539      500        850029 Aug 16 07:12 libFLAC.so
lrwxrwxrwx    1 539      500            10 Jan  1  2000 libFLAC.so.8 -> libFLAC.so
lrwxrwxrwx    1 539      500            10 Jan  1  2000 libFLAC.so.8.2.0 -> libFLAC.so
lrwxrwxrwx    1 539      root            9 Jan  1  2000 libc.so -> libc.so.0
lrwxrwxrwx    1 539      root           19 Jan  1  2000 libc.so.0 -> libuClibc-0.9.28.so
-rwxr-xr-x    1 539      500          9624 Aug 16 07:12 libcddetect.so
lrwxrwxrwx    1 root     root           32 Dec 23 11:45 libcom_err.so.3 -> /mnt/syb8634/lib/libcom_err.so.3
-rw-r--r--    1 539      root        11456 Jan  1  2000 libcrypt-0.9.28.so
lrwxrwxrwx    1 539      root           13 Jan  1  2000 libcrypt.so -> libcrypt.so.0
lrwxrwxrwx    1 539      root           18 Jan  1  2000 libcrypt.so.0 -> libcrypt-0.9.28.so
lrwxrwxrwx    1 539      root           18 Jan  1  2000 libcrypto.so -> libcrypto.so.0.9.8
-rwxr-xr-x    1 539      root      1620852 Jan  1  2000 libcrypto.so.0.9.8
lrwxrwxrwx    1 root     root           27 Dec 23 11:45 libcurl.la -> /mnt/syb8634/lib/libcurl.la
lrwxrwxrwx    1 root     root           27 Dec 23 11:45 libcurl.so -> /mnt/syb8634/lib/libcurl.so
lrwxrwxrwx    1 root     root           29 Dec 23 11:45 libcurl.so.4 -> /mnt/syb8634/lib/libcurl.so.4
-rwxr-xr-x    1 539      500        258896 Aug 16 07:12 libdcc.so
-rwxr-xr-x    1 539      500        117654 Aug 16 07:11 libdcchd.so
-rwxr-xr-x    1 539      500        601875 Aug 16 07:11 libdcchd_core.so
-rwxr-xr-x    1 539      500        115579 Aug 16 07:11 libdcchd_dvd.so
-rwxr-xr-x    1 539      500        140017 Aug 16 07:11 libdcchd_lpb.so
lrwxrwxrwx    1 539      root           15 Jan  1  2000 libdes.so -> libdes.so.1.0.0
lrwxrwxrwx    1 539      root           15 Jan  1  2000 libdes.so.1 -> libdes.so.1.0.0
-rwxr-xr-x    1 539      root         7980 Jan  1  2000 libdes.so.1.0.0
lrwxrwxrwx    1 539      500            22 Jan  1  2000 libdirect-1.0.so.0 -> libdirect-1.0.so.0.0.0
-rwxr-xr-x    1 539      500        123964 Aug 16 07:11 libdirect-1.0.so.0.0.0
lrwxrwxrwx    1 539      500            24 Jan  1  2000 libdirectfb-1.0.so.0 -> libdirectfb-1.0.so.0.0.0
-rwxr-xr-x    1 539      500        576683 Aug 16 07:11 libdirectfb-1.0.so.0.0.0
-rw-r--r--    1 539      root         7692 Jan  1  2000 libdl-0.9.28.so
lrwxrwxrwx    1 539      root           10 Jan  1  2000 libdl.so -> libdl.so.0
lrwxrwxrwx    1 539      root           15 Jan  1  2000 libdl.so.0 -> libdl-0.9.28.so
lrwxrwxrwx    1 539      500            20 Jan  1  2000 libdownload.so -> libdownload.so.1.0.0
lrwxrwxrwx    1 539      500            20 Jan  1  2000 libdownload.so.1 -> libdownload.so.1.0.0
-rwxr-xr-x    1 539      500         18828 Aug 16 07:11 libdownload.so.1.0.0
-rwxr-xr-x    1 539      500         13736 Aug 16 07:12 libdriveinfo.so
lrwxrwxrwx    1 root     root           28 Dec 23 11:45 libevent.la -> /mnt/syb8634/lib/libevent.la
lrwxrwxrwx    1 root     root           28 Dec 23 11:45 libevent.so -> /mnt/syb8634/lib/libevent.so
-rwxr-xr-x    1 539      root         6696 Jan  1  2000 libfbOSD.so
-rwxr-xr-x    1 539      500          3564 Aug 16 07:11 libfip.so
-rwxr-xr-x    1 539      500        371020 Aug 16 07:12 libfreetype.so
lrwxrwxrwx    1 539      500            14 Jan  1  2000 libfreetype.so.6 -> libfreetype.so
lrwxrwxrwx    1 539      500            21 Jan  1  2000 libfsclients.so -> libfsclients.so.1.0.0
lrwxrwxrwx    1 539      500            21 Jan  1  2000 libfsclients.so.1 -> libfsclients.so.1.0.0
-rwxr-xr-x    1 539      500         71452 Aug 16 07:11 libfsclients.so.1.0.0
lrwxrwxrwx    1 539      500            22 Jan  1  2000 libfusion-1.0.so.0 -> libfusion-1.0.so.0.0.0
-rwxr-xr-x    1 539      500         40563 Aug 16 07:11 libfusion-1.0.so.0.0.0
-rwxr-xr-x    1 539      root        37659 Jan  1  2000 libgbus.so
lrwxrwxrwx    1 539      root           13 Jan  1  2000 libgcc_s.so -> libgcc_s.so.1
-rw-r--r--    1 539      root        67644 Jan  1  2000 libgcc_s.so.1
lrwxrwxrwx    1 root     root           36 Dec 23 11:45 libgssapi_krb5.so.2 -> /mnt/syb8634/lib/libgssapi_krb5.so.2
lrwxrwxrwx    1 root     root           28 Dec 23 11:45 libiconv.la -> /mnt/syb8634/lib/libiconv.la
lrwxrwxrwx    1 root     root           30 Dec 23 11:45 libiconv.so.2 -> /mnt/syb8634/lib/libiconv.so.2
-rwxr-xr-x    1 539      500        141196 Aug 16 07:04 libid3tag.so.0
lrwxrwxrwx    1 root     root           29 Dec 23 11:45 libidn.so.11 -> /mnt/syb8634/lib/libidn.so.11
lrwxrwxrwx    1 root     root           33 Dec 23 11:45 libk5crypto.so.3 -> /mnt/syb8634/lib/libk5crypto.so.3
lrwxrwxrwx    1 root     root           29 Dec 23 11:45 libkrb5.so.3 -> /mnt/syb8634/lib/libkrb5.so.3
lrwxrwxrwx    1 root     root           36 Dec 23 11:45 libkrb5support.so.0 -> /mnt/syb8634/lib/libkrb5support.so.0
-rwxr-xr-x    1 539      root        14942 Jan  1  2000 libllad.so
-rw-r--r--    1 539      root       123272 Jan  1  2000 libm-0.9.28.so
lrwxrwxrwx    1 539      root            9 Jan  1  2000 libm.so -> libm.so.0
lrwxrwxrwx    1 539      root           14 Jan  1  2000 libm.so.0 -> libm-0.9.28.so
-rwxr-xr-x    1 539      500         80732 Aug 16 07:12 libmkvparser.so
-rw-r--r--    1 539      root         1644 Jan  1  2000 libnsl-0.9.28.so
lrwxrwxrwx    1 539      root           11 Jan  1  2000 libnsl.so -> libnsl.so.0
lrwxrwxrwx    1 539      root           16 Jan  1  2000 libnsl.so.0 -> libnsl-0.9.28.so
lrwxrwxrwx    1 root     root           29 Dec 23 11:45 libpar2.so.0 -> /mnt/syb8634/lib/libpar2.so.0
-rw-r--r--    1 539      root        77092 Jan  1  2000 libpthread-0.9.28.so
lrwxrwxrwx    1 539      root           15 Jan  1  2000 libpthread.so -> libpthread.so.0
lrwxrwxrwx    1 539      root           20 Jan  1  2000 libpthread.so.0 -> libpthread-0.9.28.so
-rw-r--r--    1 539      root         1644 Jan  1  2000 libresolv-0.9.28.so
lrwxrwxrwx    1 539      root           14 Jan  1  2000 libresolv.so -> libresolv.so.0
lrwxrwxrwx    1 539      root           19 Jan  1  2000 libresolv.so.0 -> libresolv-0.9.28.so
-rwxr-xr-x    1 539      500          9892 Aug 16 07:12 librmaacsapi.so
-rwxr-xr-x    1 539      500          7659 Aug 16 07:12 librmabcdrminterface.so
-rwxr-xr-x    1 539      500         19208 Aug 16 07:12 librmarib.so
-rwxr-xr-x    1 539      500         45413 Aug 16 07:12 librmasfdemux.so
-rwxr-xr-x    1 539      500         67718 Aug 16 07:12 librmasfdemuxcore.so
-rwxr-xr-x    1 539      500         32905 Aug 16 07:12 librmasfpulldemuxcore.so
-rwxr-xr-x    1 539      500        103435 Aug 16 07:12 librmavicore.so
-rwxr-xr-x    1 539      500         16087 Aug 16 07:12 librmbluraycps.so
-rwxr-xr-x    1 539      500         45397 Aug 16 07:11 librmcdda.so
-rwxr-xr-x    1 539      500         10441 Aug 16 07:11 librmcddanavapi.so
-rwxr-xr-x    1 539      500        151707 Aug 16 07:12 librmcdfs.so
-rwxr-xr-x    1 539      500         76689 Aug 16 07:12 librmcore.so
-rwxr-xr-x    1 539      500         34305 Aug 16 07:12 librmcpputils.so
-rwxr-xr-x    1 539      500         35361 Aug 16 07:12 librmcpputils_t.so
-rwxr-xr-x    1 539      500          6771 Aug 16 07:12 librmcprminterface.so
-rwxr-xr-x    1 539      500          8138 Aug 16 07:12 librmcssinterface.so
-rwxr-xr-x    1 539      500         70271 Aug 16 07:12 librmcw.so
-rwxr-xr-x    1 539      500          6861 Aug 16 07:12 librmdemuxwritekeyapi.so
-rwxr-xr-x    1 539      500         44078 Aug 16 07:12 librmdescriptordecoder.so
-rwxr-xr-x    1 539      500        144901 Aug 16 07:12 librmdetector.so
-rwxr-xr-x    1 539      500         17019 Aug 16 07:12 librmdetectorapi.so
-rwxr-xr-x    1 539      500         12797 Aug 16 07:11 librmdisc.so
-rwxr-xr-x    1 539      500          7126 Aug 16 07:12 librmdrm.so
-rwxr-xr-x    1 539      500         14933 Aug 16 07:12 librmdtcpinterface.so
-rwxr-xr-x    1 539      500         61644 Aug 16 07:11 librmdvdfs.so
-rwxr-xr-x    1 539      500         20883 Aug 16 07:11 librmdvdfsapi.so
-rwxr-xr-x    1 539      500         18127 Aug 16 07:11 librmdvdvideoapi.so
-rwxr-xr-x    1 539      500        286545 Aug 16 07:11 librmdvdvideonav.so
-rwxr-xr-x    1 539      500        235238 Aug 16 07:12 librmec3transcoder.so
-rwxr-xr-x    1 539      500         47635 Aug 16 07:12 librmhttp.so
-rwxr-xr-x    1 539      500        161046 Aug 16 07:12 librmjpeg.so
-rwxr-xr-x    1 539      500          8755 Aug 16 07:12 librmmm.so
-rwxr-xr-x    1 539      500          9547 Aug 16 07:12 librmmm_t.so
-rwxr-xr-x    1 539      500         15049 Aug 16 07:12 librmmonitoring.so
-rwxr-xr-x    1 539      500         78481 Aug 16 07:12 librmmp4.so
-rwxr-xr-x    1 539      500         51947 Aug 16 07:12 librmmp4api.so
-rwxr-xr-x    1 539      500        234419 Aug 16 07:12 librmmp4core.so
-rwxr-xr-x    1 539      500         15338 Aug 16 07:12 librmmpeg4framework.so
-rwxr-xr-x    1 539      500         17042 Aug 16 07:11 librmpacketcommand.so
-rwxr-xr-x    1 539      500        243683 Aug 16 07:12 librmpng.so
-rwxr-xr-x    1 539      500         36446 Aug 16 07:12 librmpthreadw.so
-rwxr-xr-x    1 539      500          8241 Aug 16 07:12 librmremote.so
-rwxr-xr-x    1 539      500        273179 Aug 16 07:12 librmrtk86.so
-rwxr-xr-x    1 539      500         22913 Aug 16 07:12 librmscc.so
-rwxr-xr-x    1 539      500         14960 Aug 16 07:12 librmsoftmixer.so
-rwxr-xr-x    1 539      500          6503 Aug 16 07:12 librmspdcapi.so
-rwxr-xr-x    1 539      500         60342 Aug 16 07:12 librmstreamingprotocols.so
-rwxr-xr-x    1 539      500         45278 Aug 16 07:12 librmungif.so
-rwxr-xr-x    1 539      500         65743 Aug 16 07:12 librmvdemux.so
-rwxr-xr-x    1 539      500         15649 Aug 16 07:12 librmwmaprodecoder.so
-rwxr-xr-x    1 539      500        210665 Aug 16 07:12 librmwmaprodecodercore.so
-rwxr-xr-x    1 539      500         11422 Aug 16 07:12 librmwmdrmndstub.so
-rwxr-xr-x    1 539      500         18496 Aug 16 07:12 librmwmdrmndupnp.so
-rwxr-xr-x    1 539      500         15207 Aug 16 07:12 librmxpurtc.1_1.Me0.so
-rwxr-xr-x    1 539      500         15207 Aug 16 07:12 librmxpurtc.so
-rwxr-xr-x    1 539      500          6636 Aug 16 07:12 librmxpurtcapi.so
-rwxr-xr-x    1 539      500         67433 Aug 16 07:12 librmzlib.so
-rw-r--r--    1 539      root         4472 Jan  1  2000 librt-0.9.28.so
lrwxrwxrwx    1 539      root           10 Jan  1  2000 librt.so -> librt.so.0
lrwxrwxrwx    1 539      root           15 Jan  1  2000 librt.so.0 -> librt-0.9.28.so
-rwxr-xr-x    1 539      500         17475 Aug 16 07:12 librua.so
-rwxr-xr-x    1 539      500       1206847 Aug 16 07:12 libsamples.so
-rwxr-xr-x    1 539      500       1158712 Aug 16 07:12 libsamples_t.so
lrwxrwxrwx    1 root     root           33 Dec 23 11:45 libsigc-2.0.so.0 -> /mnt/syb8634/lib/libsigc-2.0.so.0
lrwxrwxrwx    1 539      root           15 Jan  1  2000 libssl.so -> libssl.so.0.9.8
-rwxr-xr-x    1 539      root       301352 Jan  1  2000 libssl.so.0.9.8
lrwxrwxrwx    1 539      root           18 Jan  1  2000 libstdc++.so -> libstdc++.so.6.0.7
lrwxrwxrwx    1 539      root           18 Jan  1  2000 libstdc++.so.6 -> libstdc++.so.6.0.7
-rwxr-xr-x    1 539      root       672520 Jan  1  2000 libstdc++.so.6.0.7
lrwxrwxrwx    1 539      500            20 Jan  1  2000 libsyb_misc.so -> libsyb_misc.so.1.0.0
lrwxrwxrwx    1 539      500            20 Jan  1  2000 libsyb_misc.so.1 -> libsyb_misc.so.1.0.0
-rwxr-xr-x    1 539      500          3724 Aug 16 07:11 libsyb_misc.so.1.0.0
-rwxr-xr-x    1 539      500          5812 Aug 16 07:12 libsybcallback.so
-rwxr-xr-x    1 539      500         82372 Aug 16 07:12 libsybdisplay.so
lrwxrwxrwx    1 539      500            21 Jan  1  2000 libsybstdlib.so -> libsybstdlib.so.1.0.0
lrwxrwxrwx    1 539      500            21 Jan  1  2000 libsybstdlib.so.1 -> libsybstdlib.so.1.0.0
-rwxr-xr-x    1 539      500         34192 Aug 16 07:11 libsybstdlib.so.1.0.0
lrwxrwxrwx    1 root     root           38 Dec 23 11:45 libtorrent_wrapper.so -> /mnt/syb8634/lib/libtorrent_wrapper.so
-rw-r--r--    1 539      root       425868 Jan  1  2000 libuClibc-0.9.28.so
-rw-r--r--    1 539      root         4864 Jan  1  2000 libutil-0.9.28.so
lrwxrwxrwx    1 539      root           12 Jan  1  2000 libutil.so -> libutil.so.0
lrwxrwxrwx    1 539      root           17 Jan  1  2000 libutil.so.0 -> libutil-0.9.28.so
-rwxr-xr-x    1 539      500        165901 Aug 16 07:12 libvorbisidec.so
lrwxrwxrwx    1 539      500            16 Jan  1  2000 libvorbisidec.so.1 -> libvorbisidec.so
lrwxrwxrwx    1 root     root           29 Dec 23 11:45 libxml2.so.2 -> /mnt/syb8634/lib/libxml2.so.2
drwxr-xr-x    3 539      root            0 Jan  1  2000 modules
Find all posts by this user
Add Thank You Quote this message in a reply
12-23-2010, 02:27 PM (This post was last modified: 12-23-2010 02:28 PM by macma.)
Post: #39
RE: [Apps] I-pkg A100/A110 - Updated 20th Dec
(12-23-2010 11:49 AM)dc11ab Wrote:  If you are feeling for an adventure you can do
# ipkg --force-overwrite install parted

(or something along those lines, check ipkg --help)

Thanks I try it.

Regards,
macma
I found a strange behavior when using ipkg

Code:
root@PCH-A110 /root# ipkg update
WARNING: Ignoring unknown configuration parameter: DEVICESCAN
Downloading http://biznetnetworks.dl.sourceforge.net/project/a110ipkg/Packages
Updated list of available packages in /usr/lib/ipkg/lists/a110ipkg
Successfully terminated.

It's looks like ipkg reads smartd.conf from '\share\Apps\local\etc\" because when I commen out DEVICESCAN in that file there is no warning message

Regards,
macma
Find all posts by this user
Add Thank You Quote this message in a reply
12-23-2010, 04:33 PM
Post: #40
RE: [Apps] I-pkg A100/A110 - Updated 20th Dec
(12-23-2010 02:27 PM)macma Wrote:  Thanks I try it.

Regards,
macma
I found a strange behavior when using ipkg

Code:
root@PCH-A110 /root# ipkg update
WARNING: Ignoring unknown configuration parameter: DEVICESCAN
Downloading http://biznetnetworks.dl.sourceforge.net/project/a110ipkg/Packages
Updated list of available packages in /usr/lib/ipkg/lists/a110ipkg
Successfully terminated.

It's looks like ipkg reads smartd.conf from '\share\Apps\local\etc\" because when I commen out DEVICESCAN in that file there is no warning message

Regards,
macma
Warning is fine. It even happens in C200. Do a
# ipkg list
to get the list of packages.

Sriram
C200/A400/RPi - Onkyo HT-S3400 - LG 47LV3730
Find all posts by this user
Add Thank You Quote this message in a reply
12-27-2010, 12:02 AM
Post: #41
RE: [Apps] I-pkg A100/A110 - Updated 20th Dec
Could you please add wakeonlan to the repository?

Regards,

Steffen
Find all posts by this user
Add Thank You Quote this message in a reply
12-27-2010, 01:24 AM
Post: #42
RE: [Apps] I-pkg A100/A110 - Updated 20th Dec
(12-27-2010 12:02 AM)sauberli Wrote:  Could you please add wakeonlan to the repository?

Please explain your use case and point to a suggested source, please.

Audio, video, disco - I hear, I see, I learn.
Wiki. Wiki? Wiki!
Find all posts by this user
Add Thank You Quote this message in a reply
12-27-2010, 10:37 AM
Post: #43
RE: [Apps] I-pkg A100/A110 - Updated 20th Dec
I'm looking for an alternative to "ether-wake", which comes with the telnet package, as this command struggles sending magic packets over WLAN. commands like "WOL", "wakeonlan" or "wakelan" do fine.

A suggested repository could be :

http://downloads.openwrt.org/kamikaze/7....es/mipsel/

Kind Regards,

Steffen
Find all posts by this user
Add Thank You Quote this message in a reply
12-27-2010, 11:14 AM (This post was last modified: 12-27-2010 09:02 PM by dc11ab.)
Post: #44
RE: [Apps] I-pkg A100/A110 - Updated 20th Dec
That link didn't include source files, you mean something like this?
http://sourceforge.net/projects/wake-on-lan/

I'm currently visiting some relatives but I'll give this a shot in a couple of days (if nobody beats me to it).
EDIT: Sorry I always confused in which ipkg thread I am, I don't think I have the 100-series toolchain up and running anymore. Perhaps vaidyasr or someone else can pick this up if you don't manage yourself!

Audio, video, disco - I hear, I see, I learn.
Wiki. Wiki? Wiki!
Find all posts by this user
Add Thank You Quote this message in a reply
12-27-2010, 02:32 PM
Post: #45
RE: [Apps] I-pkg A100/A110 - Updated 20th Dec
Still can't get ipkg to work. Tried export PATH=$PATH:/usr/local/bin in telnet widow ... no result. Web interface shows empty list. Ipkg list in telnet gives ipkg not found.
Find all posts by this user
Add Thank You Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  Did someone compile ath9k_htc module for pch-a110? kay 1 1,105 04-17-2013 02:27 AM
Last Post: dony71
Star [CSI] Community Software Installer 2.7.2 ** UPDATED DEC 28th ** Ger Teunis 580 263,062 04-10-2013 12:42 PM
Last Post: timwest73
  A110 - Permanent fix for opkg and local binaries path vaidyasr 3 406 03-16-2013 06:40 AM
Last Post: vaidyasr
  mochad or heyu for A110 anybody? dony71 3 420 03-12-2013 05:24 AM
Last Post: dony71
  Music Browser for NMT - Updated August, 2nd, 2011 gkreidl 14 8,036 01-19-2013 04:07 PM
Last Post: winfried_laane
  User apps randomly stopping prem1er 2 787 11-26-2012 05:33 PM
Last Post: Djiest
Star [Apps] Bierdopje 4 NMT PHP script SilverViper 4 1,321 11-26-2012 04:57 PM
Last Post: Djiest
Music MPD installation howto (updated 4 May 2009) gwillem 494 285,198 07-20-2012 09:43 PM
Last Post: krimpenrik
  HTTP streaming server on A110 ? dony71 0 1,359 01-26-2012 02:48 AM
Last Post: dony71
  Any apps that can access Amazon Prime - Instant Videos? sagittarius 3 5,049 12-07-2011 09:01 PM
Last Post: Dewdman42

Forum Jump: