Changeset a9ac978 in mainline for kernel/arch/sparc64/Makefile.inc


Ignore:
Timestamp:
2006-09-27T20:11:34Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
00b38a3
Parents:
86b31ba9
Message:

SMP stuff for sparc64.
Almost complete except for IPIs.
The absence of IPI support deadlocks
the kernel when more CPUs are configured.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/Makefile.inc

    r86b31ba9 ra9ac978  
    7171CONFIG_OFW_TREE = y
    7272
     73ifeq ($(CONFIG_SMP),y)
     74        DEFS += -DCONFIG_SMP
     75endif
     76
    7377ARCH_SOURCES = \
    7478        arch/$(ARCH)/src/cpu/cpu.c \
     
    99103        arch/$(ARCH)/src/drivers/scr.c
    100104
     105ifeq ($(CONFIG_SMP),y)
     106ARCH_SOURCES += \
     107        arch/$(ARCH)/src/smp/ipi.c \
     108        arch/$(ARCH)/src/smp/smp.c
     109endif
     110
    101111ifeq ($(CONFIG_TSB),y)
    102112ARCH_SOURCES += \
Note: See TracChangeset for help on using the changeset viewer.