From 9ee11fa485dae6956b29773ca7792f5807f96776 Mon Sep 17 00:00:00 2001 From: jow Date: Wed, 6 Oct 2010 21:22:17 +0000 Subject: [PATCH] [backfire] merge r23279 git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@23280 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/base-files/Makefile | 2 +- package/base-files/files/lib/network/config.sh | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 7de4af351..2b986049e 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=base-files -PKG_RELEASE:=43.6 +PKG_RELEASE:=43.7 PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ PKG_BUILD_DEPENDS:=opkg/host diff --git a/package/base-files/files/lib/network/config.sh b/package/base-files/files/lib/network/config.sh index 674e7216b..bf7d15cc9 100755 --- a/package/base-files/files/lib/network/config.sh +++ b/package/base-files/files/lib/network/config.sh @@ -343,12 +343,13 @@ setup_interface() { local pidfile="/var/run/dhcp-${iface}.pid" service_kill udhcpc "$pidfile" - local ipaddr netmask hostname proto1 clientid broadcast + local ipaddr netmask hostname proto1 clientid vendorid broadcast config_get ipaddr "$config" ipaddr config_get netmask "$config" netmask config_get hostname "$config" hostname config_get proto1 "$config" proto config_get clientid "$config" clientid + config_get vendorid "$config" vendorid config_get_bool broadcast "$config" broadcast 0 [ -z "$ipaddr" ] || \ @@ -363,6 +364,7 @@ setup_interface() { ${ipaddr:+-r $ipaddr} \ ${hostname:+-H $hostname} \ ${clientid:+-c $clientid} \ + ${vendorid:+-V $vendorid} \ -b -p "$pidfile" $broadcast \ ${dhcpopts:- -O rootpath -R &} ;; -- 2.35.1