Bug 144583 - OnLine Upadate for ACX111 script fails
Summary: OnLine Upadate for ACX111 script fails
Status: RESOLVED DUPLICATE of bug 140178
Alias: None
Product: SUSE LINUX 10.0
Classification: openSUSE
Component: YOU (show other bugs)
Version: unspecified
Hardware: 32bit Other
: P5 - None : Normal
Target Milestone: ---
Assignee: Joachim Gleissner
QA Contact: Klaus Kämpf
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-01-21 00:57 UTC by Richard Meese
Modified: 2006-01-24 12:04 UTC (History)
0 users

See Also:
Found By: Other
Services Priority:
Business Priority:
Blocker: ---
Marketing QA Status: ---
IT Deployment: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 ***