FSConfig.py (3898:42a529d97cf2) FSConfig.py (4094:1950ef76ddf9)
1# Copyright (c) 2006-2007 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

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

73 self.tsunami = BaseTsunami()
74 self.tsunami.attachIO(self.iobus)
75 self.tsunami.ide.pio = self.iobus.port
76 self.tsunami.ethernet.pio = self.iobus.port
77 self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = mdesc.disk(),
78 read_only = True))
79 self.intrctrl = IntrControl()
80 self.mem_mode = mem_mode
1# Copyright (c) 2006-2007 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

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

73 self.tsunami = BaseTsunami()
74 self.tsunami.attachIO(self.iobus)
75 self.tsunami.ide.pio = self.iobus.port
76 self.tsunami.ethernet.pio = self.iobus.port
77 self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = mdesc.disk(),
78 read_only = True))
79 self.intrctrl = IntrControl()
80 self.mem_mode = mem_mode
81 self.sim_console = SimConsole(listener=ConsoleListener(port=3456))
81 self.sim_console = SimConsole()
82 self.kernel = binary('vmlinux')
83 self.pal = binary('ts_osfpal')
84 self.console = binary('console')
85 self.boot_osflags = 'root=/dev/hda1 console=ttyS0'
86
87 return self
88
89def makeSparcSystem(mem_mode, mdesc = None):

--- 46 unchanged lines hidden ---
82 self.kernel = binary('vmlinux')
83 self.pal = binary('ts_osfpal')
84 self.console = binary('console')
85 self.boot_osflags = 'root=/dev/hda1 console=ttyS0'
86
87 return self
88
89def makeSparcSystem(mem_mode, mdesc = None):

--- 46 unchanged lines hidden ---