From owner-svn-src-all@freebsd.org Mon Nov 9 05:49:31 2015 Return-Path: Delivered-To: svn-src-all@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 0463CA22F32; Mon, 9 Nov 2015 05:49:31 +0000 (UTC) (envelope-from howard0su@gmail.com) Received: from mail-io0-x233.google.com (mail-io0-x233.google.com [IPv6:2607:f8b0:4001:c06::233]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C4A1F1E89; Mon, 9 Nov 2015 05:49:30 +0000 (UTC) (envelope-from howard0su@gmail.com) Received: by ioc74 with SMTP id 74so110039041ioc.2; Sun, 08 Nov 2015 21:49:29 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=JCo1GF+ogm9jZJM0IwFk/b8eoRggxQ4FzLtth1c+/WA=; b=i4Ng+QWvz9ivB81OCFuWRFgpdHa9FnUGHCSo7qQPxyZoW42WlqDqsaQdN9zxVr9h5U QIVRf/MMfEBKvQEqc6DOLek8JYDpNSJL43/IwPWR0jJseDhOsaQg7iisvgkDkcVH0SM+ Nkj5OkUOMfaF/a4ZdaE1LHS0A0Zlxo/hJFTEdO6SS2PUtSh44NaanYlTQo00YUaDKeAZ xp8DBE3bpn8fbjB/xL126ns73Hpz35XNKV0Ncdtc4aO0jVeEWuQ5/Wrkv7Xwa6bs4vcW 1w488d9JuymeX4EozKxsxk5acce2PwVVELWcOfLU1nRGyAHGdjFS3dLTvEFyP48k7CYC j7Zg== MIME-Version: 1.0 X-Received: by 10.107.164.24 with SMTP id n24mr3096208ioe.21.1447048169886; Sun, 08 Nov 2015 21:49:29 -0800 (PST) Received: by 10.107.164.167 with HTTP; Sun, 8 Nov 2015 21:49:29 -0800 (PST) In-Reply-To: <201511081802.tA8I2eBQ049912@repo.freebsd.org> References: <201511081802.tA8I2eBQ049912@repo.freebsd.org> Date: Mon, 9 Nov 2015 13:49:29 +0800 Message-ID: Subject: Re: svn commit: r290550 - head/release/tools From: Howard Su To: Glen Barber Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Nov 2015 05:49:31 -0000 tmpfs doesn't support noatime option. please remove it. On Mon, Nov 9, 2015 at 2:02 AM, Glen Barber wrote: > Author: gjb > Date: Sun Nov 8 18:02:39 2015 > New Revision: 290550 > URL: https://svnweb.freebsd.org/changeset/base/290550 > > Log: > Use tmpfs(5) instead of md(4) for '/tmp' mount. > > Submitted by: Nikolai Lifanov > Differential Revision: D3506 > MFC after: 3 days > Sponsored by: The FreeBSD Foundation > > Modified: > head/release/tools/arm.subr > > Modified: head/release/tools/arm.subr > > ============================================================================== > --- head/release/tools/arm.subr Sun Nov 8 18:00:44 2015 (r290549) > +++ head/release/tools/arm.subr Sun Nov 8 18:02:39 2015 (r290550) > @@ -110,7 +110,7 @@ arm_install_base() { > >> ${CHROOTDIR}/${DESTDIR}/etc/fstab > echo "/dev/msdosfs/MSDOSBOOT /boot/msdos msdosfs rw,noatime 0 0" \ > >> ${CHROOTDIR}/${DESTDIR}/etc/fstab > - echo "md /tmp mfs rw,noatime,-s30m 0 0" \ > + echo "tmpfs /tmp tmpfs rw,noatime,mode=1777,size=30m 0 0" \ > >> ${CHROOTDIR}/${DESTDIR}/etc/fstab > > local hostname > _______________________________________________ > svn-src-head@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/svn-src-head > To unsubscribe, send any mail to "svn-src-head-unsubscribe@freebsd.org" > -- -Howard