diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-02-09 19:00:16 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-02-09 19:00:16 +0100 |
commit | cfb95cedb57c0ef9adc9c93d39cb5d07cb7506a1 (patch) | |
tree | d6d76d4bab678854776aa864331b1c455c9b8d15 /debian | |
parent | 7c494201c2bbc4aa5e218246ea094f0d5bc41da5 (diff) |
sync with upstream packaging
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 24 | ||||
-rw-r--r-- | debian/patches/mount.patch (renamed from debian/patches/mount-loop.patch) | 11 | ||||
-rw-r--r-- | debian/patches/series | 2 |
3 files changed, 30 insertions, 7 deletions
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 <sthibault@debian.org> 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 <sthibault@debian.org> 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 <sthibault@debian.org> Tue, 19 Nov 2013 00:21:47 +0100 + [ Justus Winter ] + * patches/exec_filename_fix.patch: Fix spurious port deallocation. + + -- Samuel Thibault <sthibault@debian.org> 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.patch index cbce88b0..9d9cd2f4 100644 --- a/debian/patches/mount-loop.patch +++ b/debian/patches/mount.patch @@ -1,18 +1,21 @@ -mount: Ignore `loop' option +mount: Ignore `loop' and `exec' options -* utils/mount.c (do_mount): Ignore `loop' option. +* 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 -@@ -273,7 +273,8 @@ do_mount (struct fs *fs, int remount) +@@ -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, "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 |