Deleted Added
sdiff udiff text old ( 6654:4c84e771cca7 ) new ( 6765:b5101309174d )
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

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

74 self.terminal = Terminal()
75 self.kernel = binary('vmlinux')
76 self.pal = binary('ts_osfpal')
77 self.console = binary('console')
78 self.boot_osflags = 'root=/dev/hda1 console=ttyS0'
79
80 return self
81
82def makeSparcSystem(mem_mode, mdesc = None):
83 class CowMmDisk(MmDisk):
84 image = CowDiskImage(child=RawDiskImage(read_only=True),
85 read_only=False)
86
87 def childImage(self, ci):
88 self.image.child.image_file = ci
89

--- 280 unchanged lines hidden ---