diff options
-rw-r--r-- | initscripts.spec | 2 | ||||
-rwxr-xr-x | sysconfig/network-scripts/ifup-wireless | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/initscripts.spec b/initscripts.spec index 7a6fe015..42f6be2c 100644 --- a/initscripts.spec +++ b/initscripts.spec @@ -203,6 +203,8 @@ rm -rf $RPM_BUILD_ROOT - set MACADDR, MTU before initializing slave devices (#218792) - reset alarm so ppp-watch works with ONBOOT=yes (#216749) - add modprobe rule for ipv6 that reads NETWORKING_IPV6 (#198045) +- add options for mounting state (#234916) +- set link up before tweaking wireless parameters (#228253) * Tue Nov 28 2006 Bill Nottingham <notting@redhat.com> 8.45.7-1 - add a step to rename any temporarily renamed devices (#208740, #214817) diff --git a/sysconfig/network-scripts/ifup-wireless b/sysconfig/network-scripts/ifup-wireless index b44f77a0..82063955 100755 --- a/sysconfig/network-scripts/ifup-wireless +++ b/sysconfig/network-scripts/ifup-wireless @@ -30,6 +30,9 @@ # Only meant to be called from ifup. +# Set link up (some cards require this.) +/sbin/ip link set dev ${DEVICE} up + # Mode need to be first : some settings apply only in a specific mode ! if [ -n "$MODE" ] ; then iwconfig $DEVICE mode $MODE |