Hello community, here is the log from the commit of package mmc-utils for openSUSE:Factory checked in at 2017-04-12 17:32:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mmc-utils (Old) and /work/SRC/openSUSE:Factory/.mmc-utils.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mmc-utils" Wed Apr 12 17:32:42 2017 rev:8 rq:482471 version:0.1+git.20170320 Changes: -------- --- /work/SRC/openSUSE:Factory/mmc-utils/mmc-utils.changes 2016-09-12 13:26:51.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.mmc-utils.new/mmc-utils.changes 2017-04-12 18:15:00.008275066 +0200 @@ -1,0 +2,8 @@ +Fri Mar 24 12:02:21 UTC 2017 - [email protected] + +- Update to version 0.1+git.20170320: + * mmc-utils: feature spec 5.0+, device life time estimation for MLC and pSLC mode + * mmc-utils: feature spec 5.0+, Pre EOL information + * mmc-utils: Check for ext_csd_rev only once + +------------------------------------------------------------------- Old: ---- mmc-utils-0.1+git.20160901.tar.xz New: ---- _servicedata mmc-utils-0.1+git.20170320.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mmc-utils.spec ++++++ --- /var/tmp/diff_new_pack.kSnmqf/_old 2017-04-12 18:15:00.536200414 +0200 +++ /var/tmp/diff_new_pack.kSnmqf/_new 2017-04-12 18:15:00.540199849 +0200 @@ -1,7 +1,7 @@ # # spec file for package mmc-utils # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: mmc-utils -Version: 0.1+git.20160901 +Version: 0.1+git.20170320 Release: 0 Summary: Tools for MMC/SD devices License: GPL-2.0 @@ -42,8 +42,9 @@ make %{?_smp_mflags} %install -make %{?_smp_mflags} install prefix=%{_prefix} DESTDIR=%{buildroot} -install -D -m 0644 man/mmc.1 %{buildroot}%{_mandir}/man1/mmc.1 +%make_install prefix=%{_prefix} +install -D -p -m 0644 man/mmc.1 \ + %{buildroot}%{_mandir}/man1/mmc.1 %files %defattr(-,root,root) ++++++ _servicedata ++++++ <servicedata> <service name="tar_scm"> <param name="url">git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc-utils.git</param> <param name="changesrevision">37c86e60c0442fef570b75cd81aeb1db4d0cbafd</param></service></servicedata>++++++ mmc-utils-0.1+git.20160901.tar.xz -> mmc-utils-0.1+git.20170320.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mmc-utils-0.1+git.20160901/mmc.h new/mmc-utils-0.1+git.20170320/mmc.h --- old/mmc-utils-0.1+git.20160901/mmc.h 2016-09-01 17:49:01.000000000 +0200 +++ new/mmc-utils-0.1+git.20170320/mmc.h 2017-03-20 14:58:49.000000000 +0100 @@ -61,6 +61,9 @@ #define EXT_CSD_NUM_OF_FW_SEC_PROG_2 304 /* RO */ #define EXT_CSD_NUM_OF_FW_SEC_PROG_1 303 /* RO */ #define EXT_CSD_NUM_OF_FW_SEC_PROG_0 302 /* RO */ +#define EXT_CSD_DEVICE_LIFE_TIME_EST_TYP_B 269 /* RO */ +#define EXT_CSD_DEVICE_LIFE_TIME_EST_TYP_A 268 /* RO */ +#define EXT_CSD_PRE_EOL_INFO 267 /* RO */ #define EXT_CSD_FIRMWARE_VERSION 254 /* RO */ #define EXT_CSD_CACHE_SIZE_3 252 #define EXT_CSD_CACHE_SIZE_2 251 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mmc-utils-0.1+git.20160901/mmc_cmds.c new/mmc-utils-0.1+git.20170320/mmc_cmds.c --- old/mmc-utils-0.1+git.20160901/mmc_cmds.c 2016-09-01 17:49:01.000000000 +0200 +++ new/mmc-utils-0.1+git.20170320/mmc_cmds.c 2017-03-20 14:58:49.000000000 +0100 @@ -1736,6 +1736,12 @@ if (ext_csd_rev >= 7) { printf("eMMC Firmware Version: %s\n", (char*)&ext_csd[EXT_CSD_FIRMWARE_VERSION]); + printf("eMMC Life Time Estimation A [EXT_CSD_DEVICE_LIFE_TIME_EST_TYP_A]: 0x%02x\n", + ext_csd[EXT_CSD_DEVICE_LIFE_TIME_EST_TYP_A]); + printf("eMMC Life Time Estimation B [EXT_CSD_DEVICE_LIFE_TIME_EST_TYP_B]: 0x%02x\n", + ext_csd[EXT_CSD_DEVICE_LIFE_TIME_EST_TYP_B]); + printf("eMMC Pre EOL information [EXT_CSD_PRE_EOL_INFO]: 0x%02x\n", + ext_csd[EXT_CSD_PRE_EOL_INFO]); } if (ext_csd_rev >= 8) {
