FSConfig.py (5833:5a07c4e3249b) FSConfig.py (5840:6481e40d21eb)
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

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

278
279 # Mark the rest as available
280 self.e820_table.entries.append(X86E820Entry(
281 addr = 0x100000,
282 size = '%dB' % (self.physmem.range.second - 0x100000 - 1),
283 range_type = 1))
284
285 # Command line
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

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

278
279 # Mark the rest as available
280 self.e820_table.entries.append(X86E820Entry(
281 addr = 0x100000,
282 size = '%dB' % (self.physmem.range.second - 0x100000 - 1),
283 range_type = 1))
284
285 # Command line
286 self.boot_osflags = 'earlyprintk=ttyS0 console=ttyS0 lpj=9608015 ' + \
287 'ide1=noprobe ' + \
288 'ide2=noprobe ide3=noprobe ' + \
289 'ide4=noprobe ide5=noprobe'
286 self.boot_osflags = 'earlyprintk=ttyS0 console=ttyS0 lpj=9608015'
290 return self
291
292
293def makeDualRoot(testSystem, driveSystem, dumpfile):
294 self = Root()
295 self.testsys = testSystem
296 self.drivesys = driveSystem
297 self.etherlink = EtherLink()

--- 78 unchanged lines hidden ---
287 return self
288
289
290def makeDualRoot(testSystem, driveSystem, dumpfile):
291 self = Root()
292 self.testsys = testSystem
293 self.drivesys = driveSystem
294 self.etherlink = EtherLink()

--- 78 unchanged lines hidden ---