forked from pool/hdparm
This commit is contained in:
parent
007924a4c6
commit
408e259c6c
@ -1,24 +0,0 @@
|
|||||||
--- hdparm.c 2008-02-19 19:55:28.000000000 -0500
|
|
||||||
+++ hdparm.c 2008-02-20 10:35:43.000000000 -0500
|
|
||||||
@@ -25,7 +25,7 @@
|
|
||||||
|
|
||||||
extern const char *minor_str[];
|
|
||||||
|
|
||||||
-#define VERSION "v8.4"
|
|
||||||
+#define VERSION "v8.4+"
|
|
||||||
|
|
||||||
#ifndef O_DIRECT
|
|
||||||
#define O_DIRECT 040000 /* direct disk access, not easily obtained from headers */
|
|
||||||
@@ -159,10 +159,8 @@
|
|
||||||
sync();
|
|
||||||
if (ioctl(fd, BLKFLSBUF, NULL)) /* do it again, big time */
|
|
||||||
perror("BLKFLSBUF failed");
|
|
||||||
- sync();
|
|
||||||
- /* await completion */
|
|
||||||
- if (do_drive_cmd(fd, NULL) && errno != EINVAL && errno != ENOTTY && errno != ENOIOCTLCMD)
|
|
||||||
- perror("HDIO_DRIVE_CMD(null) (wait for flush complete) failed");
|
|
||||||
+ else
|
|
||||||
+ do_drive_cmd(fd, NULL); /* IDE: await completion */
|
|
||||||
sync();
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:cf5d3b77ba8b4304c0f077e563ebbe8944d105ef917823297f00e648eebb6cde
|
|
||||||
size 62883
|
|
3
hdparm-8.5.tar.bz2
Normal file
3
hdparm-8.5.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:e27c521cb4916cdd9966010d7e09f537b1af60ad757a13eef64128c7a70f359a
|
||||||
|
size 62935
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Feb 25 10:35:13 CET 2008 - lmichnovic@suse.cz
|
||||||
|
|
||||||
|
- update to version 8.5
|
||||||
|
* fix u8->u16 bug in security commands for all of 8.x series, from
|
||||||
|
Christian Franke
|
||||||
|
* try and quiet errors from flush_buffer_cache()
|
||||||
|
(obsoletes *silence.patch)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Feb 20 17:03:41 CET 2008 - lmichnovic@suse.cz
|
Wed Feb 20 17:03:41 CET 2008 - lmichnovic@suse.cz
|
||||||
|
|
||||||
|
14
hdparm.spec
14
hdparm.spec
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package hdparm (Version 8.4)
|
# spec file for package hdparm (Version 8.5)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -17,15 +17,14 @@ Group: Hardware/Other
|
|||||||
PreReq: %insserv_prereq %fillup_prereq coreutils
|
PreReq: %insserv_prereq %fillup_prereq coreutils
|
||||||
Provides: base:/sbin/hdparm
|
Provides: base:/sbin/hdparm
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 8.4
|
Version: 8.5
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: A Program to Get and Set Hard Disk Parameters
|
Summary: A Program to Get and Set Hard Disk Parameters
|
||||||
Source: hdparm-%{version}.tar.bz2
|
Source: hdparm-%{version}.tar.bz2
|
||||||
Source1: 56-idedma.rules
|
Source1: 56-idedma.rules
|
||||||
Source2: sysconfig.ide
|
Source2: sysconfig.ide
|
||||||
Source3: udev.idedma.sh
|
Source3: udev.idedma.sh
|
||||||
Patch1: hdparm-8.4-silence.patch
|
Patch1: hdparm-8.5-nostrip.patch
|
||||||
Patch2: hdparm-8.4-nostrip.patch
|
|
||||||
Url: http://sourceforge.net/projects/hdparm/
|
Url: http://sourceforge.net/projects/hdparm/
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
@ -42,7 +41,6 @@ Authors:
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch1
|
%patch1
|
||||||
%patch2
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make CFLAGS="$RPM_OPT_FLAGS -Wall -Wstrict-prototypes" LDFLAGS=
|
make CFLAGS="$RPM_OPT_FLAGS -Wall -Wstrict-prototypes" LDFLAGS=
|
||||||
@ -111,6 +109,12 @@ fi
|
|||||||
/var/adm/fillup-templates/sysconfig.ide
|
/var/adm/fillup-templates/sysconfig.ide
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Feb 25 2008 lmichnovic@suse.cz
|
||||||
|
- update to version 8.5
|
||||||
|
* fix u8->u16 bug in security commands for all of 8.x series, from
|
||||||
|
Christian Franke
|
||||||
|
* try and quiet errors from flush_buffer_cache()
|
||||||
|
(obsoletes *silence.patch)
|
||||||
* Wed Feb 20 2008 lmichnovic@suse.cz
|
* Wed Feb 20 2008 lmichnovic@suse.cz
|
||||||
- *silence.patch changed after discussion with author
|
- *silence.patch changed after discussion with author
|
||||||
* Wed Feb 20 2008 lmichnovic@suse.cz
|
* Wed Feb 20 2008 lmichnovic@suse.cz
|
||||||
|
Loading…
x
Reference in New Issue
Block a user