From owner-freebsd-stable@freebsd.org Sun May 8 14:41:45 2016 Return-Path: Delivered-To: freebsd-stable@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 672DAB32227 for ; Sun, 8 May 2016 14:41:45 +0000 (UTC) (envelope-from herbert@mailbox.org) Received: from mx1.mailbox.org (mx1.mailbox.org [80.241.60.212]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.mailbox.org", Issuer "SwissSign Server Silver CA 2014 - G22" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2C5021C01 for ; Sun, 8 May 2016 14:41:44 +0000 (UTC) (envelope-from herbert@mailbox.org) Received: from smtp1.mailbox.org (smtp1.mailbox.org [80.241.60.240]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.mailbox.org (Postfix) with ESMTPS id 1BD8D43EDD for ; Sun, 8 May 2016 16:34:35 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=mailbox.org; h= content-type:content-type:mime-version:references:in-reply-to :subject:subject:from:from:message-id:date:date:received; s= mail20150812; t=1462718073; bh=zauf8R+tQqRKsQnwYAfP02TsGVLwi12Lh vYRzVAP+m0=; b=kmQ0oyhloABUbSEqEh0b1xcPZEkc3IUXT6i+Xoy4iCnSABsGR SCgElIwKSdq9SZ8SaLF9dLuHBtpITTIcbcd+eKAhSqZ4hLO01RWiTR6NEvMzNuNH 67QQt5z9XmHSYJ0ULsHbUZf09UrF2SK/Y5mJa42wX/Yo9ggG79jZOSAuBQdfvgtP fsWRwAVyofHeC59LVVYBf9Mxf7ipzI92zShmTqwM2PnX2CdjOFq0/alI3pgyXeaB bjVRyff5W6+XK0HwliXyt4W7lOUza2nCx1e3ySfxbHswXx48dELyWYtAFYt2ydL8 7vtBd5Gg5AjMFv91+eQD9TzjzVLbxZSk2dufw== X-Virus-Scanned: amavisd-new at heinlein-support.de Received: from smtp1.mailbox.org ([80.241.60.240]) by hefe.heinlein-support.de (hefe.heinlein-support.de [91.198.250.172]) (amavisd-new, port 10030) with ESMTP id V2tIn2sLFSsw for ; Sun, 8 May 2016 16:34:33 +0200 (CEST) Date: Sun, 08 May 2016 16:34:32 +0200 Message-ID: <86h9e8obyf.wl-herbert@mailbox.org> From: "Herbert J. Skuhra" To: freebsd-stable@freebsd.org Subject: Re: Wrong FreeBSD version in uname In-Reply-To: <572F2EE2.8070504@ohlste.in> References: <572F2EE2.8070504@ohlste.in> MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 May 2016 14:41:45 -0000 Jim Ohlstein skrev: > > Hello, > I'm a bit confused. > > I created a VM using 10.3 (amd64) install iso without installing > sources. I then downloaded sources as follows: > > root@c2:/usr/src # svn co https://svn.freebsd.org/base/stable/10 . > > I then created a custom kernel file and rebuilt and installed world > and kernel. > > I am currently seeing: > > # uname -v > FreeBSD 10.3-RELEASE-p2 #1 r299234M: Sun May 8 07:46:33 EDT 2016 > root@my.host.com:/usr/obj/usr/src/sys/MYKERNEL > > I would expect to see: > > FreeBSD 10.3-STABLE #0 r299234: Sun May 8 07:46:33 EDT 2016 > root@my.host.com:/usr/obj/usr/src/sys/MYKERNEL > > I am absolutely certain that I downloaded "STABLE". Am I having a > senior moment, or is this behavior not as expected? Can you show output of: % cd /usr/src % svnlite info % svnlite diff --summarize -- Herbert