diff options
author | Colin Watson <cjwatson@debian.org> | 2011-09-06 14:56:29 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2011-09-06 14:56:29 +0100 |
commit | 978e62d6f14c60747bddef2cc72d66a9c8b83b54 (patch) | |
tree | 89400a44e42d84937deba7864e4964d6c7734da5 /config.guess | |
parent | 87c685b8c6a49814fd782288097b3093f975aa72 (diff) | |
parent | 3a7e89697ca363de0f64e0d5704c57219294e41c (diff) |
* New upstream release (http://www.openssh.org/txt/release-5.9).
- Introduce sandboxing of the pre-auth privsep child using an optional
sshd_config(5) "UsePrivilegeSeparation=sandbox" mode that enables
mandatory restrictions on the syscalls the privsep child can perform.
- Add new SHA256-based HMAC transport integrity modes from
http://www.ietf.org/id/draft-dbider-sha2-mac-for-ssh-02.txt.
- The pre-authentication sshd(8) privilege separation slave process now
logs via a socket shared with the master process, avoiding the need to
maintain /dev/log inside the chroot (closes: #75043, #429243,
#599240).
- ssh(1) now warns when a server refuses X11 forwarding (closes:
#504757).
- sshd_config(5)'s AuthorizedKeysFile now accepts multiple paths,
separated by whitespace (closes: #76312). The authorized_keys2
fallback is deprecated but documented (closes: #560156).
- ssh(1) and sshd(8): set IPv6 traffic class from IPQoS, as well as IPv4
ToS/DSCP (closes: #498297).
- ssh-add(1) now accepts keys piped from standard input. E.g. "ssh-add
- < /path/to/key" (closes: #229124).
- Clean up lost-passphrase text in ssh-keygen(1) (closes: #444691).
- Say "required" rather than "recommended" in unprotected-private-key
warning (LP: #663455).
Diffstat (limited to 'config.guess')
-rwxr-xr-x | config.guess | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/config.guess b/config.guess index c2246a4f7..78553c4ea 100755 --- a/config.guess +++ b/config.guess | |||
@@ -1,10 +1,10 @@ | |||
1 | #! /bin/sh | 1 | #! /bin/sh |
2 | # Attempt to guess a canonical system name. | 2 | # Attempt to guess a canonical system name. |
3 | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, | 3 | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, |
4 | # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 | 4 | # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, |
5 | # Free Software Foundation, Inc. | 5 | # 2011 Free Software Foundation, Inc. |
6 | 6 | ||
7 | timestamp='2009-12-30' | 7 | timestamp='2011-01-23' |
8 | 8 | ||
9 | # This file is free software; you can redistribute it and/or modify it | 9 | # This file is free software; you can redistribute it and/or modify it |
10 | # under the terms of the GNU General Public License as published by | 10 | # under the terms of the GNU General Public License as published by |
@@ -57,7 +57,7 @@ GNU config.guess ($timestamp) | |||
57 | 57 | ||
58 | Originally written by Per Bothner. | 58 | Originally written by Per Bothner. |
59 | Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, | 59 | Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, |
60 | 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free | 60 | 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free |
61 | Software Foundation, Inc. | 61 | Software Foundation, Inc. |
62 | 62 | ||
63 | This is free software; see the source for copying conditions. There is NO | 63 | This is free software; see the source for copying conditions. There is NO |
@@ -270,7 +270,10 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in | |||
270 | # A Xn.n version is an unreleased experimental baselevel. | 270 | # A Xn.n version is an unreleased experimental baselevel. |
271 | # 1.2 uses "1.2" for uname -r. | 271 | # 1.2 uses "1.2" for uname -r. |
272 | echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` | 272 | echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` |
273 | exit ;; | 273 | # Reset EXIT trap before exiting to avoid spurious non-zero exit code. |
274 | exitcode=$? | ||
275 | trap '' 0 | ||
276 | exit $exitcode ;; | ||
274 | Alpha\ *:Windows_NT*:*) | 277 | Alpha\ *:Windows_NT*:*) |
275 | # How do we know it's Interix rather than the generic POSIX subsystem? | 278 | # How do we know it's Interix rather than the generic POSIX subsystem? |
276 | # Should we change UNAME_MACHINE based on the output of uname instead | 279 | # Should we change UNAME_MACHINE based on the output of uname instead |
@@ -552,7 +555,7 @@ EOF | |||
552 | echo rs6000-ibm-aix3.2 | 555 | echo rs6000-ibm-aix3.2 |
553 | fi | 556 | fi |
554 | exit ;; | 557 | exit ;; |
555 | *:AIX:*:[456]) | 558 | *:AIX:*:[4567]) |
556 | IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` | 559 | IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` |
557 | if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then | 560 | if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then |
558 | IBM_ARCH=rs6000 | 561 | IBM_ARCH=rs6000 |
@@ -968,6 +971,9 @@ EOF | |||
968 | sparc:Linux:*:* | sparc64:Linux:*:*) | 971 | sparc:Linux:*:* | sparc64:Linux:*:*) |
969 | echo ${UNAME_MACHINE}-unknown-linux-gnu | 972 | echo ${UNAME_MACHINE}-unknown-linux-gnu |
970 | exit ;; | 973 | exit ;; |
974 | tile*:Linux:*:*) | ||
975 | echo ${UNAME_MACHINE}-tilera-linux-gnu | ||
976 | exit ;; | ||
971 | vax:Linux:*:*) | 977 | vax:Linux:*:*) |
972 | echo ${UNAME_MACHINE}-dec-linux-gnu | 978 | echo ${UNAME_MACHINE}-dec-linux-gnu |
973 | exit ;; | 979 | exit ;; |
@@ -1231,6 +1237,9 @@ EOF | |||
1231 | *:QNX:*:4*) | 1237 | *:QNX:*:4*) |
1232 | echo i386-pc-qnx | 1238 | echo i386-pc-qnx |
1233 | exit ;; | 1239 | exit ;; |
1240 | NEO-?:NONSTOP_KERNEL:*:*) | ||
1241 | echo neo-tandem-nsk${UNAME_RELEASE} | ||
1242 | exit ;; | ||
1234 | NSE-?:NONSTOP_KERNEL:*:*) | 1243 | NSE-?:NONSTOP_KERNEL:*:*) |
1235 | echo nse-tandem-nsk${UNAME_RELEASE} | 1244 | echo nse-tandem-nsk${UNAME_RELEASE} |
1236 | exit ;; | 1245 | exit ;; |