BY: pcummins DATE: 2006-Mar-21 03:49 SUBJECT: RE: Need Help Networking PS2 with Router/ModemMy Network Adaptor is the same as yours, a SCPH-10281 with datecode 3C.
Once you have smap.c you can compile it, make sure you have the PS2 Linux kernel source installed (look for kernel-source-2.2.1_ps2-7 after executing rpm -q -a, otherwise you'll have to get the Disc 2 out and install it with the rpm command).
cd /usr/src/linux/drivers/ps2
mv smap.c smap.c.orig
mv <your new smap.c> .
cd /usr/src/linux
make modules
cd /usr/src/linux/drivers/ps2
cp smap.o /tmp
cd /lib/modules/2.2.1/misc
mv smap.o smap.o.orig
mv /tmp/smap.o .
And reboot. Hopefully, if all is OK it'll load your new smap.o file instead and get network working properly. |