mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-28 04:08:08 +00:00
Kernel: Let's have sys$uname() report "i686" instead of "i386"
We wouldn't be able to run on an 80386 without considerable changes, so let's be honest here and call it i686.
This commit is contained in:
@@ -1516,7 +1516,7 @@ int Process::sys$uname(utsname* buf)
|
||||
strcpy(buf->sysname, "Serenity");
|
||||
strcpy(buf->release, "1.0-dev");
|
||||
strcpy(buf->version, "FIXME");
|
||||
strcpy(buf->machine, "i386");
|
||||
strcpy(buf->machine, "i686");
|
||||
LOCKER(*s_hostname_lock);
|
||||
strncpy(buf->nodename, s_hostname->characters(), sizeof(utsname::nodename));
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user