From cfb95cedb57c0ef9adc9c93d39cb5d07cb7506a1 Mon Sep 17 00:00:00 2001 From: Justus Winter <4winter@informatik.uni-hamburg.de> Date: Sun, 9 Feb 2014 19:00:16 +0100 Subject: sync with upstream packaging --- debian/changelog | 24 ++++++++++++++++++++++-- debian/patches/mount-loop.patch | 18 ------------------ debian/patches/mount.patch | 21 +++++++++++++++++++++ debian/patches/series | 2 +- 4 files changed, 44 insertions(+), 21 deletions(-) delete mode 100644 debian/patches/mount-loop.patch create mode 100644 debian/patches/mount.patch (limited to 'debian') diff --git a/debian/changelog b/debian/changelog index 9cc7be8d..a8465f09 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,28 @@ -hurd (1:0.5.git20140113-2) UNRELEASED; urgency=low +hurd (1:0.5.git20140206-2) UNRELEASED; urgency=medium + * patches/mount.patch: Also ignore exec option. + + -- Samuel Thibault Sat, 08 Feb 2014 21:23:02 +0100 + +hurd (1:0.5.git20140206-1) unstable; urgency=medium + + * control: Only Replace/Conflict old login package which was potentially + shipping /bin/login. + * local/securetty: Remove file, let it be installed by the login package. + + -- Samuel Thibault Thu, 06 Feb 2014 00:22:53 +0000 + +hurd (1:0.5.git20140203-1) unstable; urgency=low + + [ Samuel Thibault ] + * New upstream snapshot. + - Bump mig dependencies to get server RPC inlines. * hurd.hurd-console.init: Actually make ENABLE=false in default work. - -- Samuel Thibault Tue, 19 Nov 2013 00:21:47 +0100 + [ Justus Winter ] + * patches/exec_filename_fix.patch: Fix spurious port deallocation. + + -- Samuel Thibault Mon, 03 Feb 2014 22:42:53 +0000 hurd (1:0.5.git20140113-1) unstable; urgency=low diff --git a/debian/patches/mount-loop.patch b/debian/patches/mount-loop.patch deleted file mode 100644 index cbce88b0..00000000 --- a/debian/patches/mount-loop.patch +++ /dev/null @@ -1,18 +0,0 @@ -mount: Ignore `loop' option - -* utils/mount.c (do_mount): Ignore `loop' option. ---- - mount.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) ---- a/utils/mount.c -+++ b/utils/mount.c -@@ -273,7 +273,8 @@ do_mount (struct fs *fs, int remount) - { - ARGZ (add (&fsopts, &fsopts_len, o)); - } -- else if (strcmp (o, "defaults") != 0) -+ else if (strcmp (o, "defaults") != 0 && -+ strcmp (o, "loop") != 0) - { - /* Prepend `--' to the option to make a long option switch, - e.g. `--ro' or `--rsize=1024'. */ diff --git a/debian/patches/mount.patch b/debian/patches/mount.patch new file mode 100644 index 00000000..9d9cd2f4 --- /dev/null +++ b/debian/patches/mount.patch @@ -0,0 +1,21 @@ +mount: Ignore `loop' and `exec' options + +* utils/mount.c (do_mount): Ignore `loop' and `exec' options. +--- + mount.c | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) +diff --git a/utils/mount.c b/utils/mount.c +index 8b059c2..8af055e 100644 +--- a/utils/mount.c ++++ b/utils/mount.c +@@ -248,7 +248,9 @@ do_mount (struct fs *fs, int remount) + { + ARGZ (add (&fsopts, &fsopts_len, o)); + } +- else if (strcmp (o, "defaults") != 0) ++ else if (strcmp (o, "defaults") != 0 && ++ strcmp (o, "loop") != 0 && ++ strcmp (o, "exec") != 0) + { + /* Prepend `--' to the option to make a long option switch, + e.g. `--ro' or `--rsize=1024'. */ diff --git a/debian/patches/series b/debian/patches/series index ec9edb8c..333eca0d 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -40,7 +40,7 @@ exec_filename_exec.patch exec_filename_fs.patch exec_filename_use.patch exec_filename_fix.patch -mount-loop.patch +mount.patch proc_set_init_task.patch newRPC.patch revert-remove-threadvars-hack.patch -- cgit v1.2.3