Changeset fe050b7 in mainline
- Timestamp:
- 2006-02-14T10:14:07Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 95c7526
- Parents:
- bbf5657
- Files:
-
- 3 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
Makefile
rbbf5657 rfe050b7 135 135 generic/src/smp/ipi.c 136 136 137 ## Framebuffer138 ifeq ($(CONFIG_FB),y)139 GENERIC_SOURCES += \140 generic/src/fb/font-8x16.c \141 generic/src/fb/fb.c142 DEFS += -DCONFIG_FB143 endif144 145 137 ## Test sources 146 138 # -
arch/mips32/src/console.c
rbbf5657 rfe050b7 32 32 #include <arch/drivers/serial.h> 33 33 #include <arch/drivers/msim.h> 34 #include < fb/fb.h>34 #include <genarch/fb/fb.h> 35 35 36 36 void console_init(void) -
genarch/Makefile.inc
rbbf5657 rfe050b7 60 60 genarch/src/softint/division.c 61 61 endif 62 63 ## Framebuffer 64 ifeq ($(CONFIG_FB),y) 65 GENARCH_SOURCES += \ 66 genarch/src/fb/font-8x16.c \ 67 genarch/src/fb/fb.c 68 DEFS += -DCONFIG_FB 69 endif -
genarch/src/fb/fb.c
rbbf5657 rfe050b7 27 27 */ 28 28 29 #include < fb/font-8x16.h>30 #include < fb/fb.h>29 #include <genarch/fb/font-8x16.h> 30 #include <genarch/fb/fb.h> 31 31 #include <console/chardev.h> 32 32 #include <console/console.h> -
genarch/src/fb/font-8x16.c
rbbf5657 rfe050b7 27 27 */ 28 28 29 #include < fb/font-8x16.h>29 #include <genarch/fb/font-8x16.h> 30 30 31 31 unsigned char fb_font[FONT_GLIPHS * FONT_SCANLINES] = {
Note:
See TracChangeset
for help on using the changeset viewer.