FSConfig.py (6044:3b23e5fc76e4) FSConfig.py (6072:2372a164604f)
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

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

331 self.e820_table.entries.append(X86E820Entry(
332 addr = 0,
333 size = '1MB',
334 range_type = 2))
335
336 # Mark the rest as available
337 self.e820_table.entries.append(X86E820Entry(
338 addr = 0x100000,
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

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

331 self.e820_table.entries.append(X86E820Entry(
332 addr = 0,
333 size = '1MB',
334 range_type = 2))
335
336 # Mark the rest as available
337 self.e820_table.entries.append(X86E820Entry(
338 addr = 0x100000,
339 size = '%dB' % (self.physmem.range.second - 0x100000 - 1),
339 size = '%dB' % (self.physmem.range.second - 0x100000 + 1),
340 range_type = 1))
341
342 # Command line
343 self.boot_osflags = 'earlyprintk=ttyS0 console=ttyS0 lpj=7999923 ' + \
344 'root=/dev/hda1'
345 return self
346
347

--- 83 unchanged lines hidden ---
340 range_type = 1))
341
342 # Command line
343 self.boot_osflags = 'earlyprintk=ttyS0 console=ttyS0 lpj=7999923 ' + \
344 'root=/dev/hda1'
345 return self
346
347

--- 83 unchanged lines hidden ---