The linux-wlan-ng problem is because it's kernel dependant, kernel modules are included in the package, so I guess you'll have to recompile those modules along with your kernel. Check that there are two packages, one for 2.4.X kernel and other for 2.6.X but they're kernel specific.
About the svgalib error, I've found a patch for 2.6.9+ kernels, it seems it's a bug in it, that's why you get mmap error rrr.
Here's the patch:
http://xentac.net/tur/tags/link/svga...3-debian.patch
I'm quoting the relevant part:
Quote:
#DPATCHLEVEL=1
On Linux kernels >= 2.6.9 and the introduction of flexmmap has revealed
a bug in the return value test code.
diff -Naur svgalib-1.4.3.orig/src/vga.c svgalib-1.4.3/src/vga.c
--- svgalib-1.4.3.orig/src/vga.c 2004-10-22 22:59:38.000000000 +0200
+++ svgalib-1.4.3/src/vga.c 2004-10-22 23:08:26.000000000 +0200
@@ -2001,8 +2001,8 @@
};
__vga_mmap();
- if ((long) GM < 0) {
- printf("svgalib: mmap error rrr\n");
+ if (GM == MAP_FAILED) {
+ printf("svgalib: mmap error: %s\n", strerror(errno));
exit(1);
}
/* disable video */
|
You can do this by hand, just open that file (svgalib-1.4.3/src/vga.c) with a text editor and change the lines:
Code:
if ((long) GM < 0) {
printf("svgalib: mmap error rrr\n");
to
Code:
if (GM == MAP_FAILED) {
printf("svgalib: mmap error: %s\n", strerror(errno));
and recompile svgalib. You can get the source and it's SlackBuild to build from
ftp://ftp.scarlet.be/pub/slackware/s...rce/l/svgalib/ or Slackware CD 3 or 4 if you have them.