diff options
author | joerg <joerg> | 2007-09-06 20:13:44 +0000 |
---|---|---|
committer | joerg <joerg> | 2007-09-06 20:13:44 +0000 |
commit | 79ffb3dc4b288006346ff59a93d132c6d3e4320c (patch) | |
tree | c7c192466aebda953fa361155a38fae0c0e56ec2 | |
parent | 7aeff2d4a198c2cc843c64f91e7233c2d88f792b (diff) | |
download | pkgsrc-79ffb3dc4b288006346ff59a93d132c6d3e4320c.tar.gz |
Add QNX configuration. From Sean Boudreau.
-rwxr-xr-x | bootstrap/bootstrap | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap index 691db209ec4..dd7db148ef6 100755 --- a/bootstrap/bootstrap +++ b/bootstrap/bootstrap @@ -1,6 +1,6 @@ #! /bin/sh -# $NetBSD: bootstrap,v 1.109 2007/09/06 19:23:25 joerg Exp $ +# $NetBSD: bootstrap,v 1.110 2007/09/06 20:13:44 joerg Exp $ # # # Copyright (c) 2001-2002 Alistair G. Crooks. All rights reserved. @@ -537,6 +537,16 @@ OSF1) need_sed=yes set_opsys=no ;; +QNX) + root_group=root + need_pax=yes + need_bsd_install=yes + set_opsys=no + groupsprog="id -gn" + whoamiprog="id -un" + fetch_cmd="/usr/bin/ftp" + machine_arch=`uname -p | sed -e 's/x86/i386/'` + ;; *) echo "This platform ($opsys) is untried - good luck, and thanks for using pkgsrc" root_group=wheel |