Changeset f18cc64 in mainline


Ignore:
Timestamp:
2006-11-17T21:31:07Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
73a1fe5
Parents:
f2ea5d8
Message:

Configuration changes on sparc64.
Compile TSB support by default.
Ask whether to start AP processors in the loader.

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile

    rf2ea5d8 rf18cc64  
    4848endif
    4949
     50ifeq ($(CONFIG_SMP),y)
     51        DEFS += -DCONFIG_SMP
     52endif
     53
    5054.PHONY: all build config distclean clean generic_clean
    5155
  • boot/arch/sparc64/loader/main.c

    rf2ea5d8 rf18cc64  
    9999        printf("done.\n");
    100100
     101#ifdef CONFIG_SMP
    101102        printf("\nChecking for secondary processors...");
    102103        if (!ofw_cpu())
    103104                printf("Error: unable to get CPU properties\n");
    104105        printf("done.\n");
     106#endif
    105107
    106108        printf("\nBooting the kernel...\n");
  • boot/boot.config

    rf2ea5d8 rf18cc64  
    1717! COMPILER (choice)
    1818
     19# Start AP processors
     20! [ARCH=sparc64] CONFIG_SMP (y/n)
     21
    1922# Debug bootloader
    2023! [ARCH=ppc32] CONFIG_DEBUG (n/y)
  • kernel/kernel.config

    rf2ea5d8 rf18cc64  
    104104
    105105# Use TSB
    106 ! [ARCH=sparc64] CONFIG_TSB (n/y)
     106! [ARCH=sparc64] CONFIG_TSB (y/n)
    107107
    108108# Support for Z8530 serial port
Note: See TracChangeset for help on using the changeset viewer.