1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-04 23:07:19 +03:00

[package] base-files: fix error reporting for unsupported protocols on virtual interfaces

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27132 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2011-06-07 23:25:43 +00:00
parent c7b279aebe
commit 83f0561da1
3 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=base-files
PKG_RELEASE:=71
PKG_RELEASE:=72
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
PKG_BUILD_DEPENDS:=opkg/host

View File

@ -325,7 +325,7 @@ setup_interface() {
}
# Interface settings
grep "$iface:" /proc/net/dev > /dev/null && {
grep -qE "^ *$iface:" /proc/net/dev && {
local mtu macaddr txqueuelen
config_get mtu "$config" mtu
config_get macaddr "$config" macaddr

View File

@ -1,5 +1,5 @@
#!/bin/sh
# Copyright (C) 2006 OpenWrt.org
# Copyright (C) 2006-2011 OpenWrt.org
/sbin/ifdown "$@"
@ -18,6 +18,6 @@ include /lib/network
scan_interfaces
config_get ifname "$1" device
for dev in $ifname; do
for dev in ${ifname:-$1}; do
setup_interface "$dev" "$1"
done