summaryrefslogtreecommitdiff
path: root/src/arch/x86/linux/system.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-06-12 00:58:36 -0400
committerGabe Black <gblack@eecs.umich.edu>2008-06-12 00:58:36 -0400
commitbceaa257a38d62c91317cecc78f4dba46654eb93 (patch)
tree2db79f7f87f798e4d28553c72e8dd9d1185f3026 /src/arch/x86/linux/system.hh
parent4f4ff17578846018e06b0b9b047df96a8346efd9 (diff)
downloadgem5-bceaa257a38d62c91317cecc78f4dba46654eb93.tar.xz
X86: Make the e820 table manually or automatically configurable from python.
Diffstat (limited to 'src/arch/x86/linux/system.hh')
-rw-r--r--src/arch/x86/linux/system.hh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/arch/x86/linux/system.hh b/src/arch/x86/linux/system.hh
index fc725ad45..a9c5f4ca9 100644
--- a/src/arch/x86/linux/system.hh
+++ b/src/arch/x86/linux/system.hh
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2007 The Hewlett-Packard Development Company
+ * Copyright (c) 2007-2008 The Hewlett-Packard Development Company
* All rights reserved.
*
* Redistribution and use of this software in source and binary forms,
@@ -62,12 +62,14 @@
#include <vector>
#include "params/LinuxX86System.hh"
+#include "arch/x86/bios/e820.hh"
#include "arch/x86/system.hh"
class LinuxX86System : public X86System
{
protected:
std::string commandLine;
+ X86ISA::E820Table * e820Table;
public:
typedef LinuxX86SystemParams Params;