On Fri, 28 Jul 2000, daniel sheltraw wrote:

> I am trying to upgrade my SVGAlib 1.3.1 to 1.4.1. When I do a
> "make install" I get error messages that refer to rthal so I was
> wondering if you would give me hand with correcting this problem.
> The errors read:
> 
> /lib/libvga.so: undefined reference to `rthal'

In svgalib-1.4.1/src/clockchip/icd2061a.c you will find:

    outw(SEQ_I, 0x0100);

    cli();

    cli();

    wrt_clk_bit(oldclk | 0x08);
.....

    wrt_clk_bit(clk[1]);

    sti();

    sti();

    outb(SEQ_I, 1);


Delete them, or substitute them with LXRT equivalent for user space (you just
need to become real time at cli() and back instead of sti(). Does anyone know
why these instructions are repeated? I guess "just in case processor misses
the first one".

OR check whether this clockchip/icd2061a.c is something you need at all -
try to disable linking in this file and see whether it compiles.

--
Tomek

-- [rtl] ---
To unsubscribe:
echo "unsubscribe rtl" | mail [EMAIL PROTECTED] OR
echo "unsubscribe rtl <Your_email>" | mail [EMAIL PROTECTED]
---
For more information on Real-Time Linux see:
http://www.rtlinux.org/rtlinux/

Reply via email to