[packages] frickin: remove scan_interface calls, the values are never used
authorjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 28 May 2012 23:30:12 +0000 (23:30 +0000)
committerjow <jow@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 28 May 2012 23:30:12 +0000 (23:30 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/packages@31959 3c298f89-4303-0410-b956-a3cf2f4a3e73

net/frickin/Makefile
net/frickin/files/frickin.init

index c934cdf..b5220fd 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:=frickin
 PKG_VERSION:=1.3
-PKG_RELEASE:=3
+PKG_RELEASE:=4
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 PKG_SOURCE_URL:=@SF/frickin
index c002513..7f96acf 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
 
@@ -48,15 +48,11 @@ stop_instance() {
 }
 
 start() {
-       include /lib/network
-       scan_interfaces
        config_load 'frickin'
        config_foreach start_instance 'frickin'
 }
 
 stop() {
-       include /lib/network
-       scan_interfaces
        config_load 'frickin'
        config_foreach stop_instance 'frickin'
 }