Changeset 36251c6 in mainline
- Timestamp:
- 2008-12-19T09:30:55Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bcb47fa
- Parents:
- d99b3f2
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/ski/ski.c
rd99b3f2 r36251c6 230 230 sysinfo_set_item_val("kbd.devno", NULL, ski_kbd_devno); 231 231 sysinfo_set_item_val("kbd.type", NULL, KBD_SKI); 232 233 sysinfo_set_item_val("fb", NULL, false); 232 234 } 233 235 -
uspace/srv/fb/Makefile
rd99b3f2 r36251c6 58 58 endif 59 59 ifeq ($(ARCH), ia64) 60 SOURCES += ega.c 60 SOURCES += ega.c \ 61 ski.c \ 62 serial_console.c 63 CFLAGS += -DSKI_ENABLED 61 64 CFLAGS += -DEGA_ENABLED 62 65 endif -
uspace/srv/fb/main.c
rd99b3f2 r36251c6 39 39 #include "ega.h" 40 40 #include "msim.h" 41 #include "ski.h" 41 42 #include "sgcn.h" 42 43 #include "main.h" … … 87 88 } 88 89 #endif 90 #ifdef SKI_ENABLED 91 if ((!initialized) && (sysinfo_value("fb") != true)) { 92 if (ski_init() == 0) 93 initialized = true; 94 } 95 #endif 89 96 90 97 if (!initialized)
Note:
See TracChangeset
for help on using the changeset viewer.