From 81f3211149c051e4f70b0b12eb3709dfc6e0395c Mon Sep 17 00:00:00 2001 From: Ruslan Bukin Date: Wed, 29 Apr 2015 22:35:23 -0500 Subject: arch, base, dev, kern, sym: FreeBSD support This adds support for FreeBSD/aarch64 FS and SE mode (basic set of syscalls only) Committed by: Nilay Vaish --- src/arch/arm/linux/system.cc | 4 ++-- src/arch/arm/linux/system.hh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/arch/arm/linux') diff --git a/src/arch/arm/linux/system.cc b/src/arch/arm/linux/system.cc index e9586f199..216e9ddc0 100644 --- a/src/arch/arm/linux/system.cc +++ b/src/arch/arm/linux/system.cc @@ -61,7 +61,7 @@ using namespace ArmISA; using namespace Linux; LinuxArmSystem::LinuxArmSystem(Params *p) - : ArmSystem(p), dumpStatsPCEvent(nullptr), + : GenericArmSystem(p), dumpStatsPCEvent(nullptr), enableContextSwitchStatsDump(p->enable_context_switch_stats_dump), taskFile(nullptr), kernelPanicEvent(nullptr), kernelOopsEvent(nullptr), bootReleaseAddr(p->boot_release_addr) @@ -133,7 +133,7 @@ LinuxArmSystem::initState() // address map being resolved in the interconnect // Call the initialisation of the super class - ArmSystem::initState(); + GenericArmSystem::initState(); // Load symbols at physical address, we might not want // to do this permanently, for but early bootup work diff --git a/src/arch/arm/linux/system.hh b/src/arch/arm/linux/system.hh index 4ce6ac49e..32e3568b3 100644 --- a/src/arch/arm/linux/system.hh +++ b/src/arch/arm/linux/system.hh @@ -56,7 +56,7 @@ class DumpStatsPCEvent; -class LinuxArmSystem : public ArmSystem +class LinuxArmSystem : public GenericArmSystem { protected: DumpStatsPCEvent *dumpStatsPCEvent; -- cgit v1.2.3