Changeset 48c3d50 in mainline


Ignore:
Timestamp:
2009-01-21T17:11:37Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d752cf4
Parents:
76bcaaf
Message:

salvage duplicate configuration option

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • HelenOS.config

    r76bcaaf r48c3d50  
    210210
    211211% Start AP processors by the loader
    212 ! [PLATFORM=sparc64] CONFIG_SMP (y/n)
     212! [PLATFORM=sparc64&CONFIG_SMP=y] CONFIG_AP (y/n)
    213213
    214214% Use Block Address Translation by the loader
  • boot/Makefile

    r76bcaaf r48c3d50  
    4747endif
    4848
    49 ifeq ($(CONFIG_SMP),y)
    50         DEFS += -DCONFIG_SMP
     49ifeq ($(CONFIG_AP),y)
     50        DEFS += -DCONFIG_AP
    5151endif
    5252
  • boot/arch/sparc64/loader/main.c

    r76bcaaf r48c3d50  
    261261        printf("done.\n");
    262262
    263 #ifdef CONFIG_SMP
     263#ifdef CONFIG_AP
    264264        printf("\nChecking for secondary processors...");
    265265        if (!ofw_cpu())
  • contrib/default/sparc64/Makefile.config

    r76bcaaf r48c3d50  
    5454
    5555# Start AP processors by the loader
    56 CONFIG_SMP = y
     56CONFIG_AP = y
    5757
    5858# Preserve A.OUT header in isofs.b
  • tools/config.py

    r76bcaaf r48c3d50  
    257257                        create_output(OUTPUT, defaults, ask_names)
    258258                        return 0
     259       
     260        # Check mode: only check defaults
     261        if ((len(sys.argv) >= 3) and (sys.argv[2] == 'check')):
     262                if (check_choices(defaults, ask_names)):
     263                        return 0
     264                return 1
    259265       
    260266        screen = xtui.screen_init()
Note: See TracChangeset for help on using the changeset viewer.