summaryrefslogtreecommitdiff
path: root/debian/patches/console_current_vcs.patch
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2010-08-01 12:43:52 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2010-08-01 12:45:12 +0200
commit2785afe572b463d578e023c6d4668aae888e09a5 (patch)
tree995dfb2f576d9c40d59d422f48127e25f1ef2cd3 /debian/patches/console_current_vcs.patch
parent9de2a32ced4076497e26ebfcffbd8c3ec260699b (diff)
New upstream 20100701 snapshot.
- debian/patches/dir_acces_fix.patch: Remove patch, merged upstream. - debian/patches/exec_fix.patch: Likewise. - debian/patches/libdiskfs-rename.patch: Likewise. - debian/patches/libpthread_mutex_owner.patch: Likewise. - debian/patches/libpthread_recursive_mutex_initializer.patch: Likewise. - debian/patches/libpthread_setcancel.patch: Likewise. - debian/patches/pfinet-gcc-4.3-fix.patch: Likewise. - debian/patches/procfs.patch: Likewise. - debian/patches/libpthread_cancel_init.patch: Likewise - debian/patches/libpthread_kill_0.patch: Likewise - debian/patches/console_current_vcs.patch: Likewise - debian/patches/hurd_console_startup.patch: Likewise - debian/patches/MAKEDEV.patch: Likewise - debian/patches/tmpfs.patch: Likewise - debian/patches/libpthread_procfs.patch: New patch, to enable libpthread and procfs build.
Diffstat (limited to 'debian/patches/console_current_vcs.patch')
-rw-r--r--debian/patches/console_current_vcs.patch61
1 files changed, 0 insertions, 61 deletions
diff --git a/debian/patches/console_current_vcs.patch b/debian/patches/console_current_vcs.patch
deleted file mode 100644
index c905677f..00000000
--- a/debian/patches/console_current_vcs.patch
+++ /dev/null
@@ -1,61 +0,0 @@
-commit 9291cd3fa6a76e999bc8dab25e9d5dc492403571
-Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
-Date: Sun Oct 25 20:55:04 2009 +0100
-
- Fix current_vcs driver load
-
- * console-client/current-vcs.c (vcs_repeat_init): Rename function into...
- (current_vcs_init): ... this.
- (vcs_repeat_start): Rename function into...
- (current_vcs_start): ... this.
- (vcs_repeat_fini): Rename function into...
- (current_vcs_fini): ... this.
-
----
- console-client/current-vcs.c | 14 +++++++-------
- 1 file changed, 7 insertions(+), 7 deletions(-)
-
---- a/console-client/current-vcs.c
-+++ b/console-client/current-vcs.c
-@@ -167,7 +167,7 @@ static struct argp argp = {options, pars
-
- /* Initialize the current VCS driver. */
- static error_t
--vcs_repeat_init (void **handle, int no_exit, int argc, char *argv[], int *next)
-+current_vcs_init (void **handle, int no_exit, int argc, char *argv[], int *next)
- {
- error_t err;
- int pos = 1;
-@@ -184,7 +184,7 @@ vcs_repeat_init (void **handle, int no_e
- }
-
- static error_t
--vcs_repeat_start (void *handle)
-+current_vcs_start (void *handle)
- {
- error_t err;
-
-@@ -206,7 +206,7 @@ vcs_repeat_start (void *handle)
- }
-
- static error_t
--vcs_repeat_fini (void *handle, int force)
-+current_vcs_fini (void *handle, int force)
- {
- console_unregister_consnode (vcs_node);
- console_destroy_consnode (vcs_node);
-@@ -214,10 +214,10 @@ vcs_repeat_fini (void *handle, int force
- }
-
-
--struct driver_ops driver_vcs_repeat_ops =
-+struct driver_ops driver_current_vcs_ops =
- {
-- vcs_repeat_init,
-- vcs_repeat_start,
-- vcs_repeat_fini
-+ current_vcs_init,
-+ current_vcs_start,
-+ current_vcs_fini
- };
-