Deleted Added
sdiff udiff text old ( 7069:edde97a6ea7c ) new ( 7586:da93206873dc )
full compact
1# Copyright (c) 2006-2008 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

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

165 self.hypervisor_bin = binary('q_new.bin')
166 self.openboot_bin = binary('openboot_new.bin')
167 self.nvram_bin = binary('nvram1')
168 self.hypervisor_desc_bin = binary('1up-hv.bin')
169 self.partition_desc_bin = binary('1up-md.bin')
170
171 return self
172
173def makeLinuxMipsSystem(mem_mode, mdesc = None):
174 class BaseMalta(Malta):
175 ethernet = NSGigE(pci_bus=0, pci_dev=1, pci_func=0)
176 ide = IdeController(disks=[Parent.disk0, Parent.disk2],
177 pci_func=0, pci_dev=0, pci_bus=0)
178
179 self = LinuxMipsSystem()
180 if not mdesc:

--- 240 unchanged lines hidden ---