Deleted Added
sdiff udiff text old ( 8898:f777750a00e2 ) new ( 8919:c1366a30d5eb )
full compact
1# Copyright (c) 2010-2012 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 496 unchanged lines hidden (view full) ---

505 base_entries.append(assign_to_apic)
506 assignISAInt(0, 2)
507 assignISAInt(1, 1)
508 for i in range(3, 15):
509 assignISAInt(i, i)
510 self.intel_mp_table.base_entries = base_entries
511 self.intel_mp_table.ext_entries = ext_entries
512
513def makeLinuxX86System(mem_mode, numCPUs = 1, mdesc = None, Ruby = False):
514 self = LinuxX86System()
515
516 # Build up the x86 system and then specialize it for Linux
517 makeX86System(mem_mode, numCPUs, mdesc, self, Ruby)
518
519 # We assume below that there's at least 1MB of memory. We'll require 2
520 # just to avoid corner cases.

--- 110 unchanged lines hidden ---