diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2004-05-26 18:49:24 -0400 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2004-05-26 18:49:24 -0400 |
commit | 242b59b534f07724212878535b294cdea1f6a302 (patch) | |
tree | f1b0817bcefc56264d175856ad52f033adcfbfcb /kern/linux/linux_system.hh | |
parent | 57d82e625472495750a97636bed146a7333cfe07 (diff) | |
parent | fffae72b451088e385168ba432d82b0b0d44d2cc (diff) | |
download | gem5-242b59b534f07724212878535b294cdea1f6a302.tar.xz |
removal of bootloader from config file, merged
--HG--
extra : convert_revision : 9168d939d4e707b00be6609368b592a0829a7226
Diffstat (limited to 'kern/linux/linux_system.hh')
-rw-r--r-- | kern/linux/linux_system.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kern/linux/linux_system.hh b/kern/linux/linux_system.hh index 606762984..3f743306a 100644 --- a/kern/linux/linux_system.hh +++ b/kern/linux/linux_system.hh @@ -32,10 +32,13 @@ #include <vector> #include "sim/system.hh" +#include "sim/host.hh" #include "targetarch/isa_traits.hh" #include <map> +const Addr PARAM_ADDR = ULL(0xfffffc000030a000); + class ExecContext; class ElfObject; class SymbolTable; @@ -55,10 +58,8 @@ class LinuxSystem : public System private: ElfObject *kernel; ElfObject *console; - ElfObject *bootloader; SymbolTable *kernelSymtab; - SymbolTable *bootloaderSymtab; SymbolTable *consoleSymtab; BreakPCEvent *kernelPanicEvent; @@ -88,7 +89,6 @@ class LinuxSystem : public System const std::string &console_path, const std::string &palcode, const std::string &boot_osflags, - const std::string &bootloader_path, const bool _bin, const std::vector<std::string> &_binned_fns); |