Changeset 48c3d50 in mainline
- Timestamp:
- 2009-01-21T17:11:37Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d752cf4
- Parents:
- 76bcaaf
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
r76bcaaf r48c3d50 210 210 211 211 % Start AP processors by the loader 212 ! [PLATFORM=sparc64 ] CONFIG_SMP (y/n)212 ! [PLATFORM=sparc64&CONFIG_SMP=y] CONFIG_AP (y/n) 213 213 214 214 % Use Block Address Translation by the loader -
boot/Makefile
r76bcaaf r48c3d50 47 47 endif 48 48 49 ifeq ($(CONFIG_ SMP),y)50 DEFS += -DCONFIG_ SMP49 ifeq ($(CONFIG_AP),y) 50 DEFS += -DCONFIG_AP 51 51 endif 52 52 -
boot/arch/sparc64/loader/main.c
r76bcaaf r48c3d50 261 261 printf("done.\n"); 262 262 263 #ifdef CONFIG_ SMP263 #ifdef CONFIG_AP 264 264 printf("\nChecking for secondary processors..."); 265 265 if (!ofw_cpu()) -
contrib/default/sparc64/Makefile.config
r76bcaaf r48c3d50 54 54 55 55 # Start AP processors by the loader 56 CONFIG_ SMP = y56 CONFIG_AP = y 57 57 58 58 # Preserve A.OUT header in isofs.b -
tools/config.py
r76bcaaf r48c3d50 257 257 create_output(OUTPUT, defaults, ask_names) 258 258 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 259 265 260 266 screen = xtui.screen_init()
Note:
See TracChangeset
for help on using the changeset viewer.