Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package mmc-utils for openSUSE:Factory checked in at 2022-01-04 19:37:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/mmc-utils (Old) and /work/SRC/openSUSE:Factory/.mmc-utils.new.1896 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "mmc-utils" Tue Jan 4 19:37:59 2022 rev:18 rq:943731 version:0.1+git.20211220 Changes: -------- --- /work/SRC/openSUSE:Factory/mmc-utils/mmc-utils.changes 2021-10-19 23:04:13.577283817 +0200 +++ /work/SRC/openSUSE:Factory/.mmc-utils.new.1896/mmc-utils.changes 2022-01-04 19:38:24.966002785 +0100 @@ -1,0 +2,8 @@ +Tue Jan 4 10:12:03 UTC 2022 - Martin Pluskal <[email protected]> + +- Update to version 0.1+git.20211220: + * mmc_cmds: add HS400 data rates + * mmc-utils: Use printf() to extract and print fw version + * mmc-utils: Add note for CMDQ_MODE_EN runtime value + +------------------------------------------------------------------- Old: ---- mmc-utils-0.1+git.20210930.obscpio New: ---- mmc-utils-0.1+git.20211220.obscpio ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ mmc-utils.spec ++++++ --- /var/tmp/diff_new_pack.IhqW6f/_old 2022-01-04 19:38:25.502003487 +0100 +++ /var/tmp/diff_new_pack.IhqW6f/_new 2022-01-04 19:38:25.506003491 +0100 @@ -1,7 +1,7 @@ # # spec file for package mmc-utils # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # 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.20210930 +Version: 0.1+git.20211220 Release: 0 Summary: Tools for MMC/SD devices License: GPL-2.0-only ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.IhqW6f/_old 2022-01-04 19:38:25.542003539 +0100 +++ /var/tmp/diff_new_pack.IhqW6f/_new 2022-01-04 19:38:25.542003539 +0100 @@ -1,6 +1,6 @@ <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">7769a4d7abe339ce273c13a203394a79a11fcff9</param></service></servicedata> + <param name="changesrevision">3969aa4804edb8aed7bcb3c958e49d0c7388b067</param></service></servicedata> (No newline at EOF) ++++++ mmc-utils-0.1+git.20210930.obscpio -> mmc-utils-0.1+git.20211220.obscpio ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/mmc-utils-0.1+git.20210930/mmc_cmds.c new/mmc-utils-0.1+git.20211220/mmc_cmds.c --- old/mmc-utils-0.1+git.20210930/mmc_cmds.c 2021-09-30 11:46:07.000000000 +0200 +++ new/mmc-utils-0.1+git.20211220/mmc_cmds.c 2021-12-20 11:04:18.000000000 +0100 @@ -1392,7 +1392,6 @@ __u32 regl; int fd, ret; char *device; - char lbuf[10]; const char *str; if (nargs != 2) { @@ -1613,6 +1612,8 @@ /* DEVICE_TYPE in A45, CARD_TYPE in A441 */ reg = ext_csd[196]; printf("Card Type [CARD_TYPE: 0x%02x]\n", reg); + if (reg & 0x80) printf(" HS400 Dual Data Rate eMMC @200MHz 1.2VI/O\n"); + if (reg & 0x40) printf(" HS400 Dual Data Rate eMMC @200MHz 1.8VI/O\n"); if (reg & 0x20) printf(" HS200 Single Data Rate eMMC @200MHz 1.2VI/O\n"); if (reg & 0x10) printf(" HS200 Single Data Rate eMMC @200MHz 1.8VI/O\n"); if (reg & 0x08) printf(" HS Dual Data Rate eMMC @52MHz 1.2VI/O\n"); @@ -1834,9 +1835,7 @@ } if (ext_csd_rev >= 7) { - memset(lbuf, 0, sizeof(lbuf)); - strncpy(lbuf, (char*)&ext_csd[EXT_CSD_FIRMWARE_VERSION], 8); - printf("eMMC Firmware Version: %s\n", lbuf); + printf("eMMC Firmware Version: %.8s\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", @@ -1884,6 +1883,8 @@ (ext_csd[EXT_CSD_CMDQ_DEPTH] & 0x1f) + 1); printf("Command Enabled [CMDQ_MODE_EN]: 0x%02x\n", ext_csd[EXT_CSD_CMDQ_MODE_EN]); + printf("Note: CMDQ_MODE_EN may not indicate the runtime CMDQ ON or OFF.\n" + "Please check sysfs node '/sys/devices/.../mmc_host/mmcX/mmcX:XXXX/cmdq_en'\n"); } out_free: return ret; ++++++ mmc-utils.obsinfo ++++++ --- /var/tmp/diff_new_pack.IhqW6f/_old 2022-01-04 19:38:25.686003727 +0100 +++ /var/tmp/diff_new_pack.IhqW6f/_new 2022-01-04 19:38:25.690003732 +0100 @@ -1,6 +1,5 @@ name: mmc-utils -version: 0.1+git.20210930 -mtime: 1632995167 -commit: 7769a4d7abe339ce273c13a203394a79a11fcff9 - +version: 0.1+git.20211220 +mtime: 1639994658 +commit: 3969aa4804edb8aed7bcb3c958e49d0c7388b067
