diff options
author | Florent Thoumie <flz@FreeBSD.org> | 2005-10-15 13:18:21 +0000 |
---|---|---|
committer | Florent Thoumie <flz@FreeBSD.org> | 2005-10-15 13:18:21 +0000 |
commit | ff26c71d760d89af83b62fa2ebc570a07b4a6368 (patch) | |
tree | 06851798929961e4bb636b2e84774a83866926a8 | |
parent | Fix IPV6 OPTIONS able to compile in BATCH mode. (diff) |
- Since (ipw|iwi)control are started late in the boot process, we need to
mark interfaces as up manually.
Noticed by: sem
Notes
Notes:
svn path=/head/; revision=145451
-rw-r--r-- | net/ipw-firmware/Makefile | 2 | ||||
-rw-r--r-- | net/ipw-firmware/files/ipw.sh.in | 1 | ||||
-rw-r--r-- | net/iwi-firmware/Makefile | 2 | ||||
-rw-r--r-- | net/iwi-firmware/files/iwi.sh.in | 1 |
4 files changed, 4 insertions, 2 deletions
diff --git a/net/ipw-firmware/Makefile b/net/ipw-firmware/Makefile index 2e86df7a3964..c83a19f6cfc0 100644 --- a/net/ipw-firmware/Makefile +++ b/net/ipw-firmware/Makefile @@ -8,7 +8,7 @@ PORTNAME?= ipw-firmware RELNAME?= ipw2100 PORTVERSION?= 1.3 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= net sysutils MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= flz/ipw diff --git a/net/ipw-firmware/files/ipw.sh.in b/net/ipw-firmware/files/ipw.sh.in index b20894b99a0a..f92d01d6b420 100644 --- a/net/ipw-firmware/files/ipw.sh.in +++ b/net/ipw-firmware/files/ipw.sh.in @@ -51,6 +51,7 @@ command="/usr/local/sbin/%%DRIVERNAME%%control" eval _file=\$_%%DRIVERNAME%%_file_${i} echo -n " [${i}:${_mode:=bss}]" ${command} -i ${i} -f %%DATADIR%%/${_file} + ifconfig ${i} up done echo "." } diff --git a/net/iwi-firmware/Makefile b/net/iwi-firmware/Makefile index 9305187f7277..9b7c74be93b2 100644 --- a/net/iwi-firmware/Makefile +++ b/net/iwi-firmware/Makefile @@ -8,7 +8,7 @@ PORTNAME= iwi-firmware RELNAME= ipw2200 PORTVERSION= 2.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net sysutils MAINTAINER= flz@FreeBSD.org diff --git a/net/iwi-firmware/files/iwi.sh.in b/net/iwi-firmware/files/iwi.sh.in index f3f2748d1e8a..602dd8efd3df 100644 --- a/net/iwi-firmware/files/iwi.sh.in +++ b/net/iwi-firmware/files/iwi.sh.in @@ -44,6 +44,7 @@ command="/usr/local/sbin/%%DRIVERNAME%%control" eval _mode=\$_%%DRIVERNAME%%_file_${i} echo -n " [${i}:${_mode:=bss}]" ${command} -i ${i} -d %%DATADIR%% -m ${_mode:=bss} + ifconfig ${i} up done echo "." } |