[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

SVGA on debian-arm



Hi,
    I have downloaded SVGA lib binary for ARM from debian site and
successfully installed it (Using dpkg). I wrote following program to
check the library but vga_init() & vga_setmode() returned with
error(-1). I am running Linux on CLPS7500FE machine with root file
system from Debian.

Test Program :
===========
#include <stdlib.h>
#include <vga.h>

int main()
{
    vga_init();
    vga_setmode(G320x200x256);
    vga_setcolor(4);
    vga_drawline(10,10,100,100);

    sleep(5);
    vga_setmode(TEXT);
    return EXIT_SUCCESS;
}
==========

How to trace the errors and make it work ? What are the things I need to
set (or tune) for SVGA ?


regards,
-pankaj



Reply to: