Accepting request 177261 from Base:System
- update to 3.0.17: * Fixing segfault in dosfslabel. * Allow operation on SH4 CPUs. * Finish cleanup of byteswap code. * Fix offsetof definition. * etc., see ChangeLog - refreshed ppc-reserved-sectors-fix.patch OBS-URL: https://build.opensuse.org/request/show/177261 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/dosfstools?expand=0&rev=34
This commit is contained in:
commit
1cd69897b3
3
dosfstools-3.0.17.tar.xz
Normal file
3
dosfstools-3.0.17.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9dade6b7c8ef06f7d679fcdc4524aa332ec7929837874b51c9bd490fbd4cb29f
|
||||||
|
size 73496
|
@ -1,3 +1,14 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 3 13:44:15 UTC 2013 - pgajdos@suse.com
|
||||||
|
|
||||||
|
- update to 3.0.17:
|
||||||
|
* Fixing segfault in dosfslabel.
|
||||||
|
* Allow operation on SH4 CPUs.
|
||||||
|
* Finish cleanup of byteswap code.
|
||||||
|
* Fix offsetof definition.
|
||||||
|
* etc., see ChangeLog
|
||||||
|
- refreshed ppc-reserved-sectors-fix.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Mar 25 15:24:47 UTC 2013 - mmeister@suse.com
|
Mon Mar 25 15:24:47 UTC 2013 - mmeister@suse.com
|
||||||
|
|
||||||
|
@ -22,10 +22,10 @@ Provides: mkdosfs
|
|||||||
Summary: Utilities for Making and Checking MS-DOS FAT File Systems on Linux
|
Summary: Utilities for Making and Checking MS-DOS FAT File Systems on Linux
|
||||||
License: GPL-3.0+
|
License: GPL-3.0+
|
||||||
Group: System/Filesystems
|
Group: System/Filesystems
|
||||||
Version: 3.0.16
|
Version: 3.0.17
|
||||||
Release: 0
|
Release: 0
|
||||||
Url: http://freshmeat.net/projects/dosfstools
|
Url: http://daniel-baumann.ch/software/dosfstools/
|
||||||
Source: http://ftp.de.debian.org/debian/pool/main/d/%{name}/%{name}_%{version}.orig.tar.xz
|
Source: http://daniel-baumann.ch/files/software/dosfstools/dosfstools-%{version}.tar.xz
|
||||||
Patch0: %{name}-suse-dirs.patch
|
Patch0: %{name}-suse-dirs.patch
|
||||||
# workaround for
|
# workaround for
|
||||||
# https://bugs.launchpad.net/ubuntu/+source/dosfstools/+bug/746262
|
# https://bugs.launchpad.net/ubuntu/+source/dosfstools/+bug/746262
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:450b422d89a305bcca76b1af076c51944a5cc0f1707727ee8ef64e969dd4e956
|
|
||||||
size 72424
|
|
@ -1,13 +1,13 @@
|
|||||||
Index: dosfstools-3.0.15/src/mkdosfs.c
|
Index: dosfstools-3.0.17/src/mkdosfs.c
|
||||||
===================================================================
|
===================================================================
|
||||||
--- dosfstools-3.0.15.orig/src/mkdosfs.c
|
--- dosfstools-3.0.17.orig/src/mkdosfs.c
|
||||||
+++ dosfstools-3.0.15/src/mkdosfs.c
|
+++ dosfstools-3.0.17/src/mkdosfs.c
|
||||||
@@ -1016,7 +1016,7 @@ static void setup_tables(void)
|
@@ -995,7 +995,7 @@ static void setup_tables(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Adjust the reserved number of sectors for alignment */
|
/* Adjust the reserved number of sectors for alignment */
|
||||||
- reserved_sectors = align_object(reserved_sectors, bs.cluster_size);
|
- reserved_sectors = align_object(reserved_sectors, bs.cluster_size);
|
||||||
+ /* reserved_sectors = align_object(reserved_sectors, bs.cluster_size); */
|
+ /* reserved_sectors = align_object(reserved_sectors, bs.cluster_size); */
|
||||||
bs.reserved = CT_LE_W(reserved_sectors);
|
bs.reserved = htole16(reserved_sectors);
|
||||||
|
|
||||||
/* Adjust the number of root directory entries to help enforce alignment */
|
/* Adjust the number of root directory entries to help enforce alignment */
|
||||||
|
Loading…
Reference in New Issue
Block a user