FSConfig.py (3025:00fe36086a14) FSConfig.py (3105:993f1abefd67)
1# Copyright (c) 2006 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

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

61 self.physmem.port = self.membus.port
62 self.disk0 = CowIdeDisk(driveID='master')
63 self.disk2 = CowIdeDisk(driveID='master')
64 self.disk0.childImage(mdesc.disk())
65 self.disk2.childImage(disk('linux-bigswap2.img'))
66 self.tsunami = BaseTsunami()
67 self.tsunami.attachIO(self.iobus)
68 self.tsunami.ide.pio = self.iobus.port
1# Copyright (c) 2006 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

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

61 self.physmem.port = self.membus.port
62 self.disk0 = CowIdeDisk(driveID='master')
63 self.disk2 = CowIdeDisk(driveID='master')
64 self.disk0.childImage(mdesc.disk())
65 self.disk2.childImage(disk('linux-bigswap2.img'))
66 self.tsunami = BaseTsunami()
67 self.tsunami.attachIO(self.iobus)
68 self.tsunami.ide.pio = self.iobus.port
69 self.tsunami.ide.dma = self.iobus.port
70 self.tsunami.ide.config = self.iobus.port
71 self.tsunami.ethernet.pio = self.iobus.port
69 self.tsunami.ethernet.pio = self.iobus.port
72 self.tsunami.ethernet.dma = self.iobus.port
73 self.tsunami.ethernet.config = self.iobus.port
74 self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = mdesc.disk(),
75 read_only = True))
76 self.intrctrl = IntrControl()
77 self.mem_mode = mem_mode
78 self.sim_console = SimConsole(listener=ConsoleListener(port=3456))
79 self.kernel = binary('vmlinux')
80 self.pal = binary('ts_osfpal')
81 self.console = binary('console')

--- 16 unchanged lines hidden ---
70 self.simple_disk = SimpleDisk(disk=RawDiskImage(image_file = mdesc.disk(),
71 read_only = True))
72 self.intrctrl = IntrControl()
73 self.mem_mode = mem_mode
74 self.sim_console = SimConsole(listener=ConsoleListener(port=3456))
75 self.kernel = binary('vmlinux')
76 self.pal = binary('ts_osfpal')
77 self.console = binary('console')

--- 16 unchanged lines hidden ---