Changeset 287920f in mainline for kernel/genarch/Makefile.inc


Ignore:
Timestamp:
2006-08-09T13:27:55Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d46c6ecd
Parents:
da74747
Message:

i8042 and z8530 separated, the tree compiles again.
Now there is some duplicated code in i8042.c and z8530.c,
but that can be eliminated in slower pace.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/Makefile.inc

    rda74747 r287920f  
    6868ifeq ($(CONFIG_I8042),y)
    6969        GENARCH_SOURCES += \
    70                 genarch/src/i8042/i8042.c
    71                
    72         ifeq ($(CONFIG_I8042_PC),y)
    73                 GENARCH_SOURCES += \
    74                         genarch/src/i8042/scanc_pc.c
    75         endif
    76         ifeq ($(CONFIG_I8042_SUN),y)
    77                 GENARCH_SOURCES += \
    78                         genarch/src/i8042/scanc_sun.c
    79         endif
    80        
     70                genarch/src/kbd/i8042.c \
     71                genarch/src/kbd/scanc_pc.c
    8172endif
     73
     74## z8530 controller
     75ifeq ($(CONFIG_Z8530),y)
     76        GENARCH_SOURCES += \
     77                genarch/src/kbd/z8530.c \
     78                genarch/src/kbd/scanc_sun.c
     79endif
Note: See TracChangeset for help on using the changeset viewer.