Bladeren bron

uname fix

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1066 c046a42c-6fe2-441c-8c8c-71466251a162
bellard 21 jaren geleden
bovenliggende
commit
cf720db33a
4 gewijzigde bestanden met toevoegingen van 10 en 0 verwijderingen
  1. 6 0
      linux-user/arm/syscall.h
  2. 1 0
      linux-user/i386/syscall.h
  3. 1 0
      linux-user/ppc/syscall.h
  4. 2 0
      linux-user/sparc/syscall.h

+ 6 - 0
linux-user/arm/syscall.h

@@ -28,3 +28,9 @@ struct target_pt_regs {
 #define ARM_SYSCALL_BASE	0x900000
 #define ARM_SYSCALL_BASE	0x900000
 
 
 #define ARM_NR_cacheflush (ARM_SYSCALL_BASE + 0xf0000 + 2)
 #define ARM_NR_cacheflush (ARM_SYSCALL_BASE + 0xf0000 + 2)
+
+#if defined(TARGET_WORDS_BIGENDIAN)
+#define UNAME_MACHINE "armv4b"
+#else
+#define UNAME_MACHINE "armv4l"
+#endif

+ 1 - 0
linux-user/i386/syscall.h

@@ -218,3 +218,4 @@ union target_semun {
     unsigned int __pad;	/* really void* */
     unsigned int __pad;	/* really void* */
 };
 };
 
 
+#define UNAME_MACHINE "i686"

+ 1 - 0
linux-user/ppc/syscall.h

@@ -127,3 +127,4 @@ union target_semun {
     unsigned int __pad;	/* really void* */
     unsigned int __pad;	/* really void* */
 };
 };
 
 
+#define UNAME_MACHINE "ppc"

+ 2 - 0
linux-user/sparc/syscall.h

@@ -5,3 +5,5 @@ struct target_pt_regs {
 	target_ulong y;
 	target_ulong y;
 	target_ulong u_regs[16];
 	target_ulong u_regs[16];
 };
 };
+
+#define UNAME_MACHINE "sun4"