DWL-122 DLink Installation

General discussion Forum. All YDL related question which are not Install or Beginner questions.

DWL-122 DLink Installation

Postby hcjes » 27 Feb 2005, 00:43

I have been trying to install my DLINK DWL-122 Wireless.
From what I can tell the installation has been pretty straight forward for everyone else who has tried. Everything seems to be compiling and installing correctly, however, the driver does not seem to be registering with mod probe.

System Configuration
iBook Second Edition
640MB Ramm
G3 700 MHz
Yellow Dog 4
Running Kernel 2-6.10-1

I have posted the screen of my make install
find . -name .depend -exec rm {} \;
set -e; for d in src doc man etc; do make -C $d install ; done
make[1]: Entering directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src'
set -e; for d in p80211 prism2 shared wlanctl wland nwepgen mkmeta wlancfg; do make WLAN_SRC=/root/downloads/linux-wlan-ng-0.2.1-pre26/src/ -C $d install ; donemake[2]: Entering directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/p80211'
mkdir -p /lib/modules/2.6.10-1.yd1/linux-wlan-ng
cp *.ko /lib/modules/2.6.10-1.yd1/linux-wlan-ng
make[2]: Leaving directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/p80211'
make[2]: Entering directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/prism2'
mkdir -p /etc/wlan
cp shared.prism2 /etc/wlan
mkdir -p /etc/wlan/
cp *pda /etc/wlan/
for x in *.hex ; do \
if [ -f "$x" ] ; then \
cp $x /etc/wlan//prism2_`echo $x | cut -c1-2`.hex ; \
fi; \
done
set -e; for d in driver ridlist download; do make -C $d install ; done
make[3]: Entering directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/prism2/driver'
cp prism2_cs.ko prism2_usb.ko /lib/modules/2.6.10-1.yd1/linux-wlan-ng
make[3]: Leaving directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/prism2/driver'
make[3]: Entering directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/prism2/ridlist'
echo "Nothing to do"
Nothing to do
make[3]: Leaving directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/prism2/ridlist'
make[3]: Entering directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/prism2/download'
mkdir -p /sbin
cp prism2dl /sbin
make[3]: Leaving directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/prism2/download'
make[2]: Leaving directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/prism2'
make[2]: Entering directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/shared'
Nothing to do...
make[2]: Leaving directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/shared'
make[2]: Entering directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/wlanctl'
mkdir -p /sbin
cp wlanctl /sbin/wlanctl-ng
make[2]: Leaving directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/wlanctl'
make[2]: Entering directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/wland'
mkdir -p /sbin
cp -f wland /sbin/wland
make[2]: Leaving directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/wland'make[2]: Entering directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/nwepgen'
mkdir -p /sbin
cp nwepgen /sbin
make[2]: Leaving directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/nwepgen'
make[2]: Entering directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/mkmeta'
echo "Nothing to install"
Nothing to install
make[2]: Leaving directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/mkmeta'
make[2]: Entering directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/wlancfg'
cp wlancfg /sbin
make[2]: Leaving directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src/wlancfg'
/sbin/depmod -a
make[1]: Leaving directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/src'
make[1]: Entering directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/doc'
Nothing to do...
make[1]: Leaving directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/doc'
make[1]: Entering directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/man'
mkdir -p /usr/local/man/man1
cp *.1 /usr/local/man/man1
make[1]: Leaving directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/man'
make[1]: Entering directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/etc'
set -e; for d in pcmcia wlan; do make -C $d install; done
make[2]: Entering directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/etc/pcmcia'
mkdir -p /etc/pcmcia ; \
if [ -f /etc/pcmcia/wlan-ng ]; then \
mv -f /etc/pcmcia/wlan-ng /etc/pcmcia/wlan-ng.O ; \
fi ; \
cp wlan-ng /etc/pcmcia ; \
chmod +x /etc/pcmcia/wlan-ng ; \
if [ -f /etc/pcmcia/wlan-ng.conf ]; then \
mv -f /etc/pcmcia/wlan-ng.conf /etc/pcmcia/wlan-ng.conf.O ; \
fi ; \
cp wlan-ng.conf /etc/pcmcia ; \
if [ -f /etc/pcmcia/config ]; then \
if ! grep -sq 'source.*\.\/\*\.conf$' /etc/pcmcia/config ; then \
if ! grep -sq 'source \.\/wlan-ng.conf' /etc/pcmcia/config ; then \
mv -f /etc/pcmcia/config /etc/pcmcia/config.O ; \
( echo "source ./wlan-ng.conf"; cat /etc/pcmcia/config.O) > /etc/pcmcia/config ; \
fi ; \
fi ; \
fi
make[2]: Leaving directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/etc/pcmcia'
make[2]: Entering directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/etc/wlan'mkdir -p /etc/wlan
if [ ! -f /etc/wlan/wlan.conf ] ; then \
cp wlan.conf /etc/wlan/wlan.conf ; \
fi
cp shared wlancfg-DEFAULT \
/etc/wlan
chmod 700 /etc/wlan/wlancfg-*
echo FIRMWARE_DIR=/etc/wlan/ >> /etc/wlan/shared
make[2]: Leaving directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/etc/wlan'
if [ ! -d /etc/rc.d/init.d ]; then \
mkdir -p /etc/rc.d/init.d; \
fi; \
cp rc.wlan /etc/rc.d/init.d/wlan; \
chmod 755 /etc/rc.d/init.d/wlan ;\
if [ -d /etc/hotplug ]; then \
cp wlan.agent /etc/hotplug; \
rm -f /etc/hotplug/usb/prism2_usb; \
rm -f /etc/hotplug/pci/prism2_pci; \
rm -f /etc/hotplug/pci/prism2_plx; \
fi
make[1]: Leaving directory `/root/downloads/linux-wlan-ng-0.2.1-pre26/etc'

This is what I get when I try to use modprobe

FATAL: Module prism2_usb not found.


Any help will greatly be appreciated.
-Jes
hcjes
ydl newbie
ydl newbie
 
Posts: 2
Joined: 27 Feb 2005, 00:33

YDL 5 AND DWL-122!!

Postby apenalo1 » 31 Dec 2007, 06:56

I installed YDL 5.0.2 in my iBook 500mhz, and I want to make the Dlink DWL-122 work with it. I downloaded the WLAN Linux driver but I cannot compile it! After the first "make all" of the compilation the process complains about a bunch of directories not being there and stuff. I even tried installing the kernel source from the DVD and specify the path but then complains that the headers are ther but not the tree.

How do you make this driver compile??
apenalo1
ydl newbie
ydl newbie
 
Posts: 2
Joined: 31 Dec 2007, 06:47


Return to General

Who is online

Users browsing this forum: No registered users and 38 guests

cron