]> git.pld-linux.org Git - packages/dmidecode.git/commitdiff
up to 3.1 auto/th/dmidecode-3.1-1
authorJan Palus <atler@pld-linux.org>
Wed, 23 Aug 2017 19:25:23 +0000 (21:25 +0200)
committerJan Palus <atler@pld-linux.org>
Wed, 23 Aug 2017 19:25:23 +0000 (21:25 +0200)
dmidecode-fixes.patch [deleted file]
dmidecode.spec

diff --git a/dmidecode-fixes.patch b/dmidecode-fixes.patch
deleted file mode 100644 (file)
index 11fe21b..0000000
+++ /dev/null
@@ -1,67 +0,0 @@
-From 33b5aafc6ee6b5de9f2526fb1cf4b14d1e16e4f0 Mon Sep 17 00:00:00 2001
-From: Roy Franz <roy.franz@linaro.org>
-Date: Thu, 01 Oct 2015 06:41:43 +0000
-Subject: Add "--no-sysfs" option description to -h output
-
-A description of --no-sysfs was not added to the output of "-h" when
-the feature was added, so add it now.
----
-diff --git a/dmiopt.c b/dmiopt.c
-index 0d142d2..de607f4 100644
---- a/dmiopt.c
-+++ b/dmiopt.c
-@@ -314,6 +314,7 @@ void print_help(void)
-               " -u, --dump             Do not decode the entries\n"
-               "     --dump-bin FILE    Dump the DMI data to a binary file\n"
-               "     --from-dump FILE   Read the DMI data from a binary file\n"
-+              "     --no-sysfs         Do not attempt to read DMI data from sysfs files\n"
-               " -V, --version          Display the version and exit\n";
-       printf("%s", help);
---
-cgit v0.9.0.2
-From bf7bad24ce141dab5b5acc3ffb98ce5fe4a8e0f9 Mon Sep 17 00:00:00 2001
-From: Xie XiuQi <xiexiuqi@huawei.com>
-Date: Wed, 21 Oct 2015 13:12:50 +0000
-Subject: Fix 'No SMBIOS nor DMI entry point found' on SMBIOS3
-
-address_from_efi may return a SMBIOS or SMBIOS3 format entry
-point, so add this condition.
----
-diff --git a/AUTHORS b/AUTHORS
-index d4badfa..ccf7fbb 100644
---- a/AUTHORS
-+++ b/AUTHORS
-@@ -19,6 +19,7 @@ Jarod Wilson <jarod@redhat.com>
- Anton Arapov <anton@redhat.com>
- Roy Franz <roy.franz@linaro.org>
- Tyler Bell <tyler.bell@hp.com>
-+Xie XiuQi <xiexiuqi@huawei.com>
- MANY THANKS TO (IN CHRONOLOGICAL ORDER)
- Werner Heuser
-diff --git a/dmidecode.c b/dmidecode.c
-index ce0511b..cfcade4 100644
---- a/dmidecode.c
-+++ b/dmidecode.c
-@@ -4866,8 +4866,16 @@ int main(int argc, char * const argv[])
-               goto exit_free;
-       }
--      if (smbios_decode(buf, opt.devmem, 0))
--              found++;
-+      if (memcmp(buf, "_SM3_", 5) == 0)
-+      {
-+              if (smbios3_decode(buf, opt.devmem, 0))
-+                      found++;
-+      }
-+      else if (memcmp(buf, "_SM_", 4) == 0)
-+      {
-+              if (smbios_decode(buf, opt.devmem, 0))
-+                      found++;
-+      }
-       goto done;
- memory_scan:
---
-cgit v0.9.0.2
index 418787442ecaa72498f86481bbbdb0dc08c1ddae..63861c2fc9711ad69233d7ac545e49a7c0ebb910 100644 (file)
@@ -1,13 +1,12 @@
 Summary:       A tool for dumping a computer's DMI table contents
 Summary(pl.UTF-8):     Narzędzie do zrzucania zawartości tabeli DMI komputera
 Name:          dmidecode
-Version:       3.0
+Version:       3.1
 Release:       1
 License:       GPL v2+
 Group:         Applications/System
 Source0:       http://savannah.nongnu.org/download/dmidecode/%{name}-%{version}.tar.xz
-# Source0-md5: 281ee572d45c78eca73a14834c495ffd
-Patch0:                %{name}-fixes.patch
+# Source0-md5: 679c2c015c515aa6ca5f229aee49c102
 URL:           http://www.nongnu.org/dmidecode/
 BuildRequires: tar >= 1:1.22
 BuildRequires: xz
@@ -28,7 +27,6 @@ BIOS-u.
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %{__make} \
This page took 0.114702 seconds and 4 git commands to generate.