~ubuntu-branches/debian/stretch/uswsusp/stretch

« back to all changes in this revision

Viewing changes to debian/patches/uswsusp_rename.patch

  • Committer: Bazaar Package Importer
  • Author(s): Rodolfo García Peñas (kix), Rodolfo García Peñas (kix), Closes: #552484, #576803, #528483, Closes: #495111, #595125, #486352, #433872, #590233, Closes: #550725, #549118, Closes: #437094, #586674, #547158, #567604, Closes: #520705, Anibal Monsalve Salazar
  • Date: 2011-03-14 08:26:16 UTC
  • mfrom: (0.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110314082616-7mjcl6tfzsv22arm
Tags: 1.0-1
[ Rodolfo García Peñas (kix) ]
* New 1.0 version [Closes: #589743, #578496, #617534]
* A lot of new machines. 
  [Closes: #552484, #576803, #528483] 
  [Closes: #495111, #595125, #486352, #433872, #590233] 
* A new length for addressing 
  [Closes: #550725, #549118]
  (http://lkml.org/lkml/2009/11/3/377)
* Support for Kernel Mode Set (KMS) 
  [Closes: #437094, #586674, #547158, #567604]
* Switch to dpkg-source 3.0 (quilt) format
* Compiled without splash support. 
  libsplash is not included in stable, many bugs.
* Moved the manpage file "suspend.conf.8" to manual section 5.
  [Closes: #520705]

[ Anibal Monsalve Salazar ]
* Update uploaders list

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Index: uswsusp-0.8/HOWTO
2
 
===================================================================
3
 
--- uswsusp-0.8.orig/HOWTO      2008-07-15 16:52:48.000000000 +0200
4
 
+++ uswsusp-0.8/HOWTO   2008-07-15 16:53:00.000000000 +0200
 
1
This patch changes the name of the /etc/suspend.{conf|key} files to /etc/uswsusp.{conf|key}
 
2
--- a/HOWTO
 
3
+++ b/HOWTO
5
4
@@ -147,7 +147,7 @@
6
5
 
7
6
 (f) Optinally create initramfs image
56
55
 something else pointed to by the "RSA key file =" configuration  parameter of
57
56
 s2disk).  This file contains the public modulus (n), public exponent (e), the
58
57
 AES-encrypted private exponent (d), the AES-encrypted primes (p), (q) and
59
 
Index: uswsusp-0.8/config_parser.h
60
 
===================================================================
61
 
--- uswsusp-0.8.orig/config_parser.h    2008-07-15 16:52:48.000000000 +0200
62
 
+++ uswsusp-0.8/config_parser.h 2008-07-15 16:53:00.000000000 +0200
 
58
--- a/config_parser.h
 
59
+++ b/config_parser.h
63
60
@@ -27,4 +27,4 @@
64
61
 void usage(char *my_name, struct option options[], const char *short_options);
65
62
 void version(char *my_name, char *extra_version);
66
63
 
67
64
-#define CONFIG_FILE    "/etc/suspend.conf"
68
65
+#define CONFIG_FILE    "/etc/uswsusp.conf"
69
 
Index: uswsusp-0.8/encrypt.h
70
 
===================================================================
71
 
--- uswsusp-0.8.orig/encrypt.h  2008-07-15 16:52:48.000000000 +0200
72
 
+++ uswsusp-0.8/encrypt.h       2008-07-15 16:53:00.000000000 +0200
73
 
@@ -58,5 +58,5 @@
 
66
--- a/encrypt.h
 
67
+++ b/encrypt.h
 
68
@@ -59,7 +59,7 @@
74
69
 void encrypt_init(unsigned char *, unsigned char *, char *);
75
70
 void get_random_salt(unsigned char *salt, size_t size);
76
71
 
77
 
-#define SUSPEND_KEY_FILE       "/etc/suspend.key"
78
 
+#define SUSPEND_KEY_FILE       "/etc/uswsusp.key"
79
 
 #endif
80
 
Index: uswsusp-0.8/keygen.c
81
 
===================================================================
82
 
--- uswsusp-0.8.orig/keygen.c   2008-07-15 16:52:48.000000000 +0200
83
 
+++ uswsusp-0.8/keygen.c        2008-07-15 16:53:00.000000000 +0200
 
72
-#define SUSPEND_KEY_FILE_PATH  "/etc/suspend.key"
 
73
+#define SUSPEND_KEY_FILE_PATH  "/etc/uswsusp.key"
 
74
 #define ENCRYPT_BUF_PAGES      256
 
75
 
 
76
 extern gcry_cipher_hd_t cipher_handle;
 
77
--- a/keygen.c
 
78
+++ b/keygen.c
84
79
@@ -27,7 +27,7 @@
85
80
 #define MAX_KEY_BITS   4096
86
81
 #define MAX_OUT_SIZE   (sizeof(struct RSA_data))