From: <abe...@us...> - 2015-02-28 14:20:20
|
Revision: 6991 http://sourceforge.net/p/astlinux/code/6991 Author: abelbeck Date: 2015-02-28 14:20:12 +0000 (Sat, 28 Feb 2015) Log Message: ----------- miniupnpd, use the more descriptive 'http_port' instead of 'port', and re-enable 'friendly_name' along with some other strings Modified Paths: -------------- branches/1.0/package/miniupnpd/miniupnpd.init branches/1.0/package/miniupnpd/miniupnpd.mk Modified: branches/1.0/package/miniupnpd/miniupnpd.init =================================================================== --- branches/1.0/package/miniupnpd/miniupnpd.init 2015-02-27 17:48:43 UTC (rev 6990) +++ branches/1.0/package/miniupnpd/miniupnpd.init 2015-02-28 14:20:12 UTC (rev 6991) @@ -158,7 +158,9 @@ return fi - echo "port=5000 + astlinux_release="$(cat /etc/astlinux-release)" + + echo "http_port=5000 enable_natpmp=$UPNP_ENABLE_NATPMP enable_upnp=$UPNP_ENABLE_UPNP lease_file=$MINIUPNPD_LEASEFILE @@ -170,7 +172,10 @@ clean_ruleset_interval=600 uuid=$UUID serial=000001 -model_number=$(cat /etc/astlinux-release)" >> $MINIUPNPD_CONF +friendly_name=AstLinux Router +model_name=AstLinux Router +model_description=$astlinux_release +model_number=$astlinux_release" >> $MINIUPNPD_CONF if [ -n "$UPNP_ALLOW" ]; then upnp_allow >> $MINIUPNPD_CONF else Modified: branches/1.0/package/miniupnpd/miniupnpd.mk =================================================================== --- branches/1.0/package/miniupnpd/miniupnpd.mk 2015-02-27 17:48:43 UTC (rev 6990) +++ branches/1.0/package/miniupnpd/miniupnpd.mk 2015-02-28 14:20:12 UTC (rev 6991) @@ -22,7 +22,7 @@ define MINIUPNPD_BUILD_CMDS $(TARGET_CONFIGURE_OPTS) \ - CONFIG_OPTIONS="--leasefile --portinuse" \ + CONFIG_OPTIONS="--leasefile --portinuse --vendorcfg" \ $(MAKE) -f Makefile.linux -C $(@D) miniupnpd endef This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |