FSConfig.py (10780:46070443051e) | FSConfig.py (11182:fa8b2a99d4fe) |
---|---|
1# Copyright (c) 2010-2012, 2015 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 --- 123 unchanged lines hidden (view full) --- 132 self.pal = binary('ts_osfpal') 133 self.console = binary('console') 134 if not cmdline: 135 cmdline = 'root=/dev/hda1 console=ttyS0' 136 self.boot_osflags = fillInCmdline(mdesc, cmdline) 137 138 return self 139 | 1# Copyright (c) 2010-2012, 2015 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 --- 123 unchanged lines hidden (view full) --- 132 self.pal = binary('ts_osfpal') 133 self.console = binary('console') 134 if not cmdline: 135 cmdline = 'root=/dev/hda1 console=ttyS0' 136 self.boot_osflags = fillInCmdline(mdesc, cmdline) 137 138 return self 139 |
140def makeSparcSystem(mem_mode, mdesc=None): | 140def makeSparcSystem(mem_mode, mdesc=None, cmdline=None): |
141 # Constants from iob.cc and uart8250.cc 142 iob_man_addr = 0x9800000000 143 uart_pio_size = 8 144 145 class CowMmDisk(MmDisk): 146 image = CowDiskImage(child=RawDiskImage(read_only=True), 147 read_only=False) 148 --- 499 unchanged lines hidden --- | 141 # Constants from iob.cc and uart8250.cc 142 iob_man_addr = 0x9800000000 143 uart_pio_size = 8 144 145 class CowMmDisk(MmDisk): 146 image = CowDiskImage(child=RawDiskImage(read_only=True), 147 read_only=False) 148 --- 499 unchanged lines hidden --- |