Bug 144583

Summary: OnLine Upadate for ACX111 script fails
Product: [openSUSE] SUSE LINUX 10.0 Reporter: Richard Meese <rfmis>
Component: YOUAssignee: Joachim Gleissner <joachim.gleissner>
Status: RESOLVED DUPLICATE QA Contact: Klaus Kämpf <kkaempf>
Severity: Normal    
Priority: P5 - None    
Version: unspecified   
Target Milestone: ---   
Hardware: 32bit   
OS: Other   
Whiteboard:
Found By: Other Services Priority:
Business Priority: Blocker: ---
Marketing QA Status: --- IT Deployment: ---

Description Richard Meese 2006-01-21 00:57:29 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
Comment 1 Joachim Gleissner 2006-01-24 12:04:31 UTC

*** This bug has been marked as a duplicate of 140178 ***