- Timestamp:
- 2006-06-04T12:42:03Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1160f8d
- Parents:
- dd641e3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fb/main.c
rdd641e3 r26f48570 57 57 int initialized = 0; 58 58 59 #ifdef ia3259 #ifdef FB_ENABLED 60 60 if (sysinfo_value("fb.kind") == 1) { 61 61 if (fb_init() == 0) 62 62 initialized = 1; 63 } else if (sysinfo_value("fb.kind") == 2) { 63 } 64 #endif 65 #ifdef EGA_ENABLED 66 if (! initialized && sysinfo_value("fb.kind") == 2) { 64 67 if (ega_init() == 0) 65 68 initialized = 1; … … 67 70 #endif 68 71 69 #ifdef amd6470 if (sysinfo_value("fb.kind") == 1) {71 if (fb_init() == 0)72 initialized = 1;73 } else if (sysinfo_value("fb.kind") == 2) {74 if (ega_init() == 0)75 initialized = 1;76 }77 #endif78 79 80 81 72 if (!initialized) 82 73 sysio_init();
Note:
See TracChangeset
for help on using the changeset viewer.