SHA256
1
0
forked from pool/coreutils

- Combine r166 and r167 to mention the patch name.

- Change coreutils-df-always-hide-rootfs.patch to not hide
  the rootfs entry with "df -a".

OBS-URL: https://build.opensuse.org/package/show/Base:System/coreutils?expand=0&rev=169
This commit is contained in:
Bernhard Voelker 2012-12-04 09:26:01 +00:00 committed by Git OBS Bridge
parent 1efa7ee86c
commit cb29fee732
2 changed files with 4 additions and 8 deletions

View File

@ -6,7 +6,7 @@ Index: coreutils-8.17/src/df.c
if (!selected_fstype (fstype) || excluded_fstype (fstype))
return;
+ if (fstype && (STRNCMP_LIT (fstype, "rootfs") == 0))
+ if (fstype && !show_all_fs && (STRNCMP_LIT (fstype, "rootfs") == 0))
+ return;
+
/* If MOUNT_POINT is NULL, then the file system is not mounted, and this

View File

@ -1,13 +1,9 @@
Mon Dec 3 00:45:43 UTC 2012 - mail@bernhard-voelker.de
- Avoid crash in "df --total" due to new
coreutils-df-always-hide-rootfs.patch.
-------------------------------------------------------------------
Wed Nov 28 12:25:18 UTC 2012 - rmilasan@suse.com
Tue Dec 4 08:16:35 UTC 2012 - mail@bernhard-voelker.de
- Update default posix version to 200112 (bnc#783352).
Hide rootfs in df (df not using yet /proc/self/mountinfo).
- Add coreutils-df-always-hide-rootfs.patch:
Hide rootfs in df (df not using yet /proc/self/mountinfo).
-------------------------------------------------------------------
Mon Nov 19 13:04:44 UTC 2012 - idonmez@suse.com