summaryrefslogtreecommitdiff
path: root/src/arch/mips/linux/process.cc
diff options
context:
space:
mode:
authorAli Saidi <Ali.Saidi@ARM.com>2012-08-15 10:38:04 -0400
committerAli Saidi <Ali.Saidi@ARM.com>2012-08-15 10:38:04 -0400
commitdd1b346584e520ba970e62aa3bcc7d32828cdeba (patch)
tree0d33ba874e0048c72b1648ae6e9cd36e212d0898 /src/arch/mips/linux/process.cc
parent11411cc9c70fb532798c5c8fb287ad658111ff15 (diff)
downloadgem5-dd1b346584e520ba970e62aa3bcc7d32828cdeba.tar.xz
sysemul: bump all linux versions of for syscal emulation to 3.0.
New tool chains seem to be looking for kernel versions newer than what this this was previously set to. Also take this opportunity to change the hostname we report in uname to sim.gem5.org.
Diffstat (limited to 'src/arch/mips/linux/process.cc')
-rw-r--r--src/arch/mips/linux/process.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/mips/linux/process.cc b/src/arch/mips/linux/process.cc
index fda32b97b..ef21179e5 100644
--- a/src/arch/mips/linux/process.cc
+++ b/src/arch/mips/linux/process.cc
@@ -54,8 +54,8 @@ unameFunc(SyscallDesc *desc, int callnum, LiveProcess *process,
TypedBufferArg<Linux::utsname> name(process->getSyscallArg(tc, index));
strcpy(name->sysname, "Linux");
- strcpy(name->nodename,"m5.eecs.umich.edu");
- strcpy(name->release, "2.6.35");
+ strcpy(name->nodename,"sim.gem5.org");
+ strcpy(name->release, "3.0.0");
strcpy(name->version, "#1 Mon Aug 18 11:32:15 EDT 2003");
strcpy(name->machine, "mips");