arm_generic.py (9380:e428871da248) | arm_generic.py (9447:156f74caf0d4) |
---|---|
1# Copyright (c) 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 --- 79 unchanged lines hidden (view full) --- 88 Note: This class is a specialization of the ArmFSSystem and is 89 only really needed to provide backwards compatibility for existing 90 test cases. 91 """ 92 93 def __init__(self, machine_type='RealView_PBX', **kwargs): 94 BaseFSSystemUniprocessor.__init__(self, **kwargs) 95 LinuxArmSystemBuilder.__init__(self, machine_type) | 1# Copyright (c) 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 --- 79 unchanged lines hidden (view full) --- 88 Note: This class is a specialization of the ArmFSSystem and is 89 only really needed to provide backwards compatibility for existing 90 test cases. 91 """ 92 93 def __init__(self, machine_type='RealView_PBX', **kwargs): 94 BaseFSSystemUniprocessor.__init__(self, **kwargs) 95 LinuxArmSystemBuilder.__init__(self, machine_type) |
96 97 98class LinuxArmFSSwitcheroo(LinuxArmSystemBuilder, BaseFSSwitcheroo): 99 """Uniprocessor ARM system prepared for CPU switching""" 100 101 def __init__(self, machine_type='RealView_PBX', **kwargs): 102 BaseFSSwitcheroo.__init__(self, **kwargs) 103 LinuxArmSystemBuilder.__init__(self, machine_type) |
|