diff options
author | Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> | 2005-09-21 12:39:14 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-21 19:16:30 -0400 |
commit | 8e5cb35a60c8792ffc3ba89ea66ebdd3c2f01cb1 (patch) | |
tree | 85d8b8f9926a765e96024bd8f0d08bf0e6de08e0 /arch/um | |
parent | 36decba90b184a25b7f77fb7df1612125cc41ac5 (diff) |
[PATCH] uml: fix uname output on 32-bit binary on 64-bit host
Translate uname output taken from the host if needed.
Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/um')
-rw-r--r-- | arch/um/kernel/user_util.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/um/kernel/user_util.c b/arch/um/kernel/user_util.c index a25f3ea11fd7..41d17c71511c 100644 --- a/arch/um/kernel/user_util.c +++ b/arch/um/kernel/user_util.c | |||
@@ -128,6 +128,12 @@ void setup_machinename(char *machine_out) | |||
128 | struct utsname host; | 128 | struct utsname host; |
129 | 129 | ||
130 | uname(&host); | 130 | uname(&host); |
131 | #if defined(UML_CONFIG_UML_X86) && !defined(UML_CONFIG_64BIT) | ||
132 | if (!strcmp(host.machine, "x86_64")) { | ||
133 | strcpy(machine_out, "i686"); | ||
134 | return; | ||
135 | } | ||
136 | #endif | ||
131 | strcpy(machine_out, host.machine); | 137 | strcpy(machine_out, host.machine); |
132 | } | 138 | } |
133 | 139 | ||