Jump to content


tonner

Member Since 16 Feb 2019
Offline Last Active 01 May 2019 15:50
-----

Posts I've Made

In Topic: DLNA/uPnP Browser

29 April 2019 - 21:44

UPNP client

1. opkg install /tmp/libupnp3_1.6.5-r1_mips32el.ipk

2. opkg install /tmp/djmount_0.71-r9_mips32el.ipk

(https://www.opena.tv...51&d=1523522651)

3. editing script /etc/inet.d/djmount

 

#!/bin/sh
DAEMON=/usr/bin/djmount
NAME=djmount
DESC="UPnP client"
MOUNTPOINT="/media/upnp/"
ARGS="-o iocharset=utf8 $MOUNTPOINT"

test -f $DAEMON || exit 0

set -e

case "$1" in
start)
    echo -n "* starting $DESC: $NAME... "
    if ! test -d $MOUNTPOINT; then
    mkdir $MOUNTPOINT
    fi
    start-stop-daemon -S -b -x $DAEMON -- $ARGS
    echo "done."
    ;;
stop)
    echo -n "* stopping $DESC: $NAME... "
    start-stop-daemon -K -x $DAEMON || true
    echo "done."
    ;;
restart)
    echo "* restarting $DESC: $NAME... "
    $0 stop
    $0 start
    echo "done."
    ;;
*)
    echo "Usage: $0 {start|stop|restart}"
    exit 1
    ;;
esac

exit 0