FSConfig.py (5843:a2c317cefcf8) FSConfig.py (5845:c88856b98084)
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

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

317
318 # Mark the rest as available
319 self.e820_table.entries.append(X86E820Entry(
320 addr = 0x100000,
321 size = '%dB' % (self.physmem.range.second - 0x100000 - 1),
322 range_type = 1))
323
324 # 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

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

317
318 # Mark the rest as available
319 self.e820_table.entries.append(X86E820Entry(
320 addr = 0x100000,
321 size = '%dB' % (self.physmem.range.second - 0x100000 - 1),
322 range_type = 1))
323
324 # Command line
325 self.boot_osflags = 'earlyprintk=ttyS0 console=ttyS0 lpj=9608015'
325 self.boot_osflags = 'earlyprintk=ttyS0 console=ttyS0 lpj=9608015 ' + \
326 'root=/dev/hda1'
326 return self
327
328
329def makeDualRoot(testSystem, driveSystem, dumpfile):
330 self = Root()
331 self.testsys = testSystem
332 self.drivesys = driveSystem
333 self.etherlink = EtherLink()

--- 78 unchanged lines hidden ---
327 return self
328
329
330def makeDualRoot(testSystem, driveSystem, dumpfile):
331 self = Root()
332 self.testsys = testSystem
333 self.drivesys = driveSystem
334 self.etherlink = EtherLink()

--- 78 unchanged lines hidden ---