[packages] parprouted: use network.sh to find devices
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 28 May 2012 15:38:58 +0000 (15:38 +0000)
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 28 May 2012 15:38:58 +0000 (15:38 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@31949 3c298f89-4303-0410-b956-a3cf2f4a3e73

net/parprouted/Makefile
net/parprouted/files/parprouted.init

index db53747..6ada5db 100644 (file)
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2006-2011 OpenWrt.org
+# Copyright (C) 2006-2012 OpenWrt.org
 #
 # This is free software, licensed under the GNU General Public License v2.
 # See /LICENSE for more information.
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=parprouted
 PKG_VERSION:=0.64
-PKG_RELEASE:=3
+PKG_RELEASE:=4
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 PKG_SOURCE_URL:=http://www.hazard.maks.net/parprouted/
index 137983c..7c5a90d 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/sh /etc/rc.common
-# Copyright (C) 2006-2011 OpenWrt.org
+# Copyright (C) 2006-2012 OpenWrt.org
 
 START=50
 
@@ -11,9 +11,9 @@ section_enabled() {
 
 append_interface() {
        local name="$1"
-       local interface
-       config_get interface "$name" 'ifname' "$name"
-       append args "$interface"
+       local device
+       network_get_device device "$name"
+       append args "${device:-$name}"
 }
 
 start_instance() {
@@ -33,8 +33,8 @@ start_instance() {
 }
 
 start() {
-       include /lib/network
-       scan_interfaces
+       . /lib/network/functions.sh
+
        config_load 'parprouted'
        config_foreach start_instance 'parprouted'
 }