Bugzilla – Bug 144583
OnLine Upadate for ACX111 script fails
Last modified: 2006-01-24 12:04:31 UTC
file installacx111firmware.sh has error reported when Yast tries to install it the acx100 installed but is the wrong one. comparing the two .sh files the acx111 is tying to unzip and file not found record not a zip file. copy of file as downloaded during update #!/bin/sh # # install_intersil_firmware # # This script tries to install the firmware needed to run # WLAN cards using the ACX111 chip. die() { popd test -d $TMPDIR rm -rf $TMPDIR exit 1 } if [ "`id -u`" != "0" ]; then echo "error: You must be root to use this program!" exit 1 fi test -z "$( type -p unzip)" && { echo "'unzip' is not installed, aborting"; exit 1; } test -d /lib/firmware || mkdir -p /lib/firmware TMPDIR=$(mktemp -d /var/tmp/acx111.XXXXXX) || exit 1 pushd `pwd` >/dev/null cd $TMPDIR unzip /var/lib/YaST2/you/files/md_download.php\?md_id=1607 >/dev/null || die mv Release\ Files/Driver/Win2000/FwRad16.bin /lib/firmware/ || die mv Release\ Files/Driver/Win2000/FwRad17.bin /lib/firmware/ || die popd >/dev/null rm -rf $TMPDIR exit 0 #!/bin/sh # # install_intersil_firmware # # This script tries to install the firmware needed to run # WLAN cards using the ACX111 chip. die() { popd test -d $TMPDIR rm -rf $TMPDIR exit 1 } if [ "`id -u`" != "0" ]; then echo "error: You must be root to use this program!" exit 1 fi test -z "$( type -p unzip)" && { echo "'unzip' is not installed, aborting"; exit 1; } test -d /lib/firmware || mkdir -p /lib/firmware TMPDIR=$(mktemp -d /var/tmp/acx111.XXXXXX) || exit 1 pushd `pwd` >/dev/null cd $TMPDIR unzip /var/lib/YaST2/you/files/md_download.php\?md_id=1607 >/dev/null || die mv Release\ Files/Driver/Win2000/FwRad16.bin /lib/firmware/ || die mv Release\ Files/Driver/Win2000/FwRad17.bin /lib/firmware/ || die popd >/dev/null rm -rf $TMPDIR exit 0 #!/bin/sh # # install_intersil_firmware # # This script tries to install the firmware needed to run # WLAN cards using the ACX111 chip. die() { popd test -d $TMPDIR rm -rf $TMPDIR exit 1 } if [ "`id -u`" != "0" ]; then echo "error: You must be root to use this program!" exit 1 fi test -z "$( type -p unzip)" && { echo "'unzip' is not installed, aborting"; exit 1; } test -d /lib/firmware || mkdir -p /lib/firmware TMPDIR=$(mktemp -d /var/tmp/acx111.XXXXXX) || exit 1 pushd `pwd` >/dev/null cd $TMPDIR unzip /var/lib/YaST2/you/files/md_download.php\?md_id=1607 >/dev/null || die mv Release\ Files/Driver/Win2000/FwRad16.bin /lib/firmware/ || die mv Release\ Files/Driver/Win2000/FwRad17.bin /lib/firmware/ || die popd >/dev/null rm -rf $TMPDIR exit 0 #!/bin/sh # # install_intersil_firmware # # This script tries to install the firmware needed to run # WLAN cards using the ACX111 chip. die() { popd test -d $TMPDIR rm -rf $TMPDIR exit 1 } if [ "`id -u`" != "0" ]; then echo "error: You must be root to use this program!" exit 1 fi test -z "$( type -p unzip)" && { echo "'unzip' is not installed, aborting"; exit 1; } test -d /lib/firmware || mkdir -p /lib/firmware TMPDIR=$(mktemp -d /var/tmp/acx111.XXXXXX) || exit 1 pushd `pwd` >/dev/null cd $TMPDIR unzip /var/lib/YaST2/you/files/md_download.php\?md_id=1607 >/dev/null || die mv Release\ Files/Driver/Win2000/FwRad16.bin /lib/firmware/ || die mv Release\ Files/Driver/Win2000/FwRad17.bin /lib/firmware/ || die popd >/dev/null rm -rf $TMPDIR exit 0
*** This bug has been marked as a duplicate of 140178 ***