]> git.pld-linux.org Git - packages/hdparm.git/commitdiff
e1567df94a7f0611ba12036906558ee5 hdparm-4.1.tar.gz
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Mon, 5 Mar 2001 14:05:39 +0000 (14:05 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    hdparm-sparc.patch -> 1.2

hdparm-sparc.patch [deleted file]

diff --git a/hdparm-sparc.patch b/hdparm-sparc.patch
deleted file mode 100644 (file)
index 838712a..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
---- hdparm-3.3/hdparm.c.~1~    Tue Jul 30 18:16:03 1996
-+++ hdparm-3.3/hdparm.c        Tue Apr 21 22:44:57 1998
-@@ -124,7 +124,13 @@
-       if (!(id->field_valid&1))
-               printf(" (maybe):");
-       printf(" CurCHS=%d/%d/%d, CurSects=%d",
--              id->cur_cyls, id->cur_heads, id->cur_sectors, *(int *)&id->cur_capacity0);
-+              id->cur_cyls, id->cur_heads, id->cur_sectors,
-+#ifdef BIG_ENDIAN
-+             (id->cur_capacity0 << 16) | id->cur_capacity1
-+#else /* LITTLE_ENDIAN */
-+             (id->cur_capacity1 << 16) | id->cur_capacity0
-+#endif
-+             );
-       printf(", LBA=%s", YN(id->capability&2));
-       if (id->capability&2)
-               printf(", LBAsects=%d", id->lba_capacity);
-
This page took 0.138611 seconds and 4 git commands to generate.