[packages] frickin: remove scan_interface calls, the values are never used

git-svn-id: svn://svn.openwrt.org/openwrt/packages@31959 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2012-05-28 23:30:12 +00:00
parent 60716979a8
commit 3e9cc1fa6a
2 changed files with 3 additions and 7 deletions

View 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. # This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information. # See /LICENSE for more information.
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=frickin PKG_NAME:=frickin
PKG_VERSION:=1.3 PKG_VERSION:=1.3
PKG_RELEASE:=3 PKG_RELEASE:=4
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/frickin PKG_SOURCE_URL:=@SF/frickin

View File

@ -1,5 +1,5 @@
#!/bin/sh /etc/rc.common #!/bin/sh /etc/rc.common
# Copyright (C) 2006-2011 OpenWrt.org # Copyright (C) 2006-2012 OpenWrt.org
START=50 START=50
@ -48,15 +48,11 @@ stop_instance() {
} }
start() { start() {
include /lib/network
scan_interfaces
config_load 'frickin' config_load 'frickin'
config_foreach start_instance 'frickin' config_foreach start_instance 'frickin'
} }
stop() { stop() {
include /lib/network
scan_interfaces
config_load 'frickin' config_load 'frickin'
config_foreach stop_instance 'frickin' config_foreach stop_instance 'frickin'
} }