From owner-cvs-all@FreeBSD.ORG Tue Jul 29 03:03:16 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE8D637B417; Tue, 29 Jul 2003 03:03:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45A6343F3F; Tue, 29 Jul 2003 03:03:16 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h6TA3G0U005107; Tue, 29 Jul 2003 03:03:16 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h6TA3G1S005106; Tue, 29 Jul 2003 03:03:16 -0700 (PDT) Message-Id: <200307291003.h6TA3G1S005106@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 29 Jul 2003 03:03:15 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/compat/linux linux_misc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2003 10:03:17 -0000 des 2003/07/29 03:03:15 PDT FreeBSD src repository Modified files: sys/compat/linux linux_misc.c Log: Try to make 'uname -a' look more like it does on Linux: - cut the version string at the newline, suppressing information about who built the kernel and in what directory. Most of this information was already lost to truncation. - on i386, return the precise CPU class (if known) rather than just "i386". Linux software which uses this information to select which binary to run often does not know what to make of "i386". Revision Changes Path 1.147 +30 -0 src/sys/compat/linux/linux_misc.c