Blame SOURCES/no_smbios_unsupp.patch

c28c22
diff --git a/src/core/dmi.cc b/src/core/dmi.cc
c28c22
index 46197a3..3061f03 100644
c28c22
--- a/src/core/dmi.cc
c28c22
+++ b/src/core/dmi.cc
c28c22
@@ -1752,8 +1753,8 @@ bool scan_dmi(hwNode & n)
c28c22
   u16 dmimaj = 0, dmimin = 0;
c28c22
   currentcpu = 0;
c28c22
c28c22
-#if defined(__arm__) || defined (__hppa__) 
c28c22
-  return false;		// SMBIOS not supported on PA-RISC and ARM machines
c28c22
+#if defined(__arm__) || defined (__hppa__)  || defined (__s390x__) || defined (__powerpc__)
c28c22
+  return false;		// SMBIOS not supported on PA-RISC, S/390, ARM and PowerPC machines
c28c22
 #endif
c28c22
c28c22
   if (sizeof(u8) != 1 || sizeof(u16) != 2 || sizeof(u32) != 4)
c28c22