FSConfig.py (9845:3f6e2f267aba) FSConfig.py (9898:2935441b0870)
1# Copyright (c) 2010-2012 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

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

504 self.e820_table.entries = \
505 [
506 # Mark the first megabyte of memory as reserved
507 X86E820Entry(addr = 0, size = '639kB', range_type = 1),
508 X86E820Entry(addr = 0x9fc00, size = '385kB', range_type = 2),
509 # Mark the rest as available
510 X86E820Entry(addr = 0x100000,
511 size = '%dB' % (phys_mem_size - 0x100000),
1# Copyright (c) 2010-2012 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

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

504 self.e820_table.entries = \
505 [
506 # Mark the first megabyte of memory as reserved
507 X86E820Entry(addr = 0, size = '639kB', range_type = 1),
508 X86E820Entry(addr = 0x9fc00, size = '385kB', range_type = 2),
509 # Mark the rest as available
510 X86E820Entry(addr = 0x100000,
511 size = '%dB' % (phys_mem_size - 0x100000),
512 range_type = 1)
512 range_type = 1),
513 # Reserve the last 16kB of the 32-bit address space for the
514 # m5op interface
515 X86E820Entry(addr=0xFFFF0000, size='64kB', range_type=2),
513 ]
514
515 # Command line
516 self.boot_osflags = 'earlyprintk=ttyS0 console=ttyS0 lpj=7999923 ' + \
517 'root=/dev/hda1'
518 return self
519
520

--- 22 unchanged lines hidden ---
516 ]
517
518 # Command line
519 self.boot_osflags = 'earlyprintk=ttyS0 console=ttyS0 lpj=7999923 ' + \
520 'root=/dev/hda1'
521 return self
522
523

--- 22 unchanged lines hidden ---