Changeset fe050b7 in mainline for genarch


Ignore:
Timestamp:
2006-02-14T10:14:07Z (20 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
95c7526
Parents:
bbf5657
Message:

Moved framebuffer to genarch.

Location:
genarch
Files:
1 edited
4 moved

Legend:

Unmodified
Added
Removed
  • genarch/Makefile.inc

    rbbf5657 rfe050b7  
    6060                genarch/src/softint/division.c
    6161endif
     62
     63## Framebuffer
     64ifeq ($(CONFIG_FB),y)
     65        GENARCH_SOURCES += \
     66                genarch/src/fb/font-8x16.c \
     67                genarch/src/fb/fb.c
     68        DEFS += -DCONFIG_FB
     69endif
  • genarch/src/fb/fb.c

    rbbf5657 rfe050b7  
    2727 */
    2828
    29 #include <fb/font-8x16.h>
    30 #include <fb/fb.h>
     29#include <genarch/fb/font-8x16.h>
     30#include <genarch/fb/fb.h>
    3131#include <console/chardev.h>
    3232#include <console/console.h>
  • genarch/src/fb/font-8x16.c

    rbbf5657 rfe050b7  
    2727 */
    2828
    29 #include <fb/font-8x16.h>
     29#include <genarch/fb/font-8x16.h>
    3030
    3131unsigned char fb_font[FONT_GLIPHS * FONT_SCANLINES] = {
Note: See TracChangeset for help on using the changeset viewer.