FSConfig.py (13636:3b55e4bae1d8) FSConfig.py (13731:67cd980cb20f)
1# Copyright (c) 2010-2012, 2015-2019 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

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

543
544 # Add in a Bios information structure.
545 structures = [X86SMBiosBiosInformation()]
546 self.smbios_table.structures = structures
547
548 # Set up the Intel MP table
549 base_entries = []
550 ext_entries = []
1# Copyright (c) 2010-2012, 2015-2019 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

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

543
544 # Add in a Bios information structure.
545 structures = [X86SMBiosBiosInformation()]
546 self.smbios_table.structures = structures
547
548 # Set up the Intel MP table
549 base_entries = []
550 ext_entries = []
551 for i in xrange(numCPUs):
551 for i in range(numCPUs):
552 bp = X86IntelMPProcessor(
553 local_apic_id = i,
554 local_apic_version = 0x14,
555 enable = True,
556 bootstrap = (i == 0))
557 base_entries.append(bp)
558 io_apic = X86IntelMPIOAPIC(
559 id = numCPUs,

--- 159 unchanged lines hidden ---
552 bp = X86IntelMPProcessor(
553 local_apic_id = i,
554 local_apic_version = 0x14,
555 enable = True,
556 bootstrap = (i == 0))
557 base_entries.append(bp)
558 io_apic = X86IntelMPIOAPIC(
559 id = numCPUs,

--- 159 unchanged lines hidden ---