diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2010-08-01 12:43:52 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2010-08-01 12:45:12 +0200 |
commit | 2785afe572b463d578e023c6d4668aae888e09a5 (patch) | |
tree | 995dfb2f576d9c40d59d422f48127e25f1ef2cd3 /debian/patches/MAKEDEV.patch | |
parent | 9de2a32ced4076497e26ebfcffbd8c3ec260699b (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/MAKEDEV.patch')
-rw-r--r-- | debian/patches/MAKEDEV.patch | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/debian/patches/MAKEDEV.patch b/debian/patches/MAKEDEV.patch deleted file mode 100644 index 8f130d0c..00000000 --- a/debian/patches/MAKEDEV.patch +++ /dev/null @@ -1,60 +0,0 @@ -commit 62e4f1a11b4598daa4a22fe3b868fde3c6fa818e -Author: Samuel Thibault <samuel.thibault@ens-lyon.org> -Date: Mon Jan 11 03:03:08 2010 +0100 - - Make MAKEDEV bash-free - - * sutils/MAKEDEV.sh (cmd, st, lose, mkdev): Remove function, add - (). - (mkdev): Use ${I#???} instead of ${I:3}. - ---- - MAKEDEV.sh | 10 +++++----- - 1 file changed, 5 insertions(+), 5 deletions(-) - -diff --git a/sutils/MAKEDEV.sh b/sutils/MAKEDEV.sh -index 260e93b..4277b05 100644 ---- a/sutils/MAKEDEV.sh -+++ b/sutils/MAKEDEV.sh -@@ -51,12 +51,12 @@ case "$#" in 0) - exit 1;; - esac - --function cmd { -+cmd() { - eval $ECHO "$@" - eval $EXEC "$@" - } - --function st { -+st() { - local NODE="$1" - local OWNER="$2" - local PERM="$3" -@@ -68,7 +68,7 @@ function st { - fi - } - --function lose { -+lose() { - local line - for line; do - echo 1>&2 "$0: $line" -@@ -76,7 +76,7 @@ function lose { - exit 1 - } - --function mkdev { -+mkdev() { - local I - for I; do - case $I in -@@ -120,7 +120,7 @@ function mkdev { - # ptys - [pt]ty[pqrstuvwxyzPQRS]?) - # Make one pty, both the master and slave halves. -- local id="${I:3}" -+ local id="${I#???}" - st pty$id root 666 /hurd/term ${DEVDIR}/pty$id \ - pty-master ${DEVDIR}/tty$id - st tty$id root 666 /hurd/term ${DEVDIR}/tty$id \ |