Changeset 36251c6 in mainline


Ignore:
Timestamp:
2008-12-19T09:30:55Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
bcb47fa
Parents:
d99b3f2
Message:

Ski framebuffer driver.

Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia64/src/ski/ski.c

    rd99b3f2 r36251c6  
    230230        sysinfo_set_item_val("kbd.devno", NULL, ski_kbd_devno);
    231231        sysinfo_set_item_val("kbd.type", NULL, KBD_SKI);
     232
     233        sysinfo_set_item_val("fb", NULL, false);
    232234}
    233235
  • uspace/srv/fb/Makefile

    rd99b3f2 r36251c6  
    5858endif
    5959ifeq ($(ARCH), ia64)
    60         SOURCES += ega.c
     60        SOURCES += ega.c \
     61                   ski.c \
     62                   serial_console.c
     63        CFLAGS += -DSKI_ENABLED
    6164        CFLAGS += -DEGA_ENABLED
    6265endif
  • uspace/srv/fb/main.c

    rd99b3f2 r36251c6  
    3939#include "ega.h"
    4040#include "msim.h"
     41#include "ski.h"
    4142#include "sgcn.h"
    4243#include "main.h"
     
    8788        }
    8889#endif
     90#ifdef SKI_ENABLED
     91        if ((!initialized) && (sysinfo_value("fb") != true)) {
     92                if (ski_init() == 0)
     93                        initialized = true;
     94        }
     95#endif
    8996
    9097        if (!initialized)
Note: See TracChangeset for help on using the changeset viewer.