From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.77) (envelope-from ) id 1SrEKo-0001kS-U5 for garchives@archives.gentoo.org; Tue, 17 Jul 2012 20:25:31 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6BB33E068C; Tue, 17 Jul 2012 20:25:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 36B81E068C for ; Tue, 17 Jul 2012 20:25:22 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 69ED51B4015 for ; Tue, 17 Jul 2012 20:25:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 2B865E5434 for ; Tue, 17 Jul 2012 20:25:20 +0000 (UTC) From: "Richard Yao" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Yao" Message-ID: <1342556560.b8626e78ef1e534ee95a058d2a2b8f530d432aad.ryao@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: defaults/ X-VCS-Repository: proj/genkernel X-VCS-Files: defaults/initrd.scripts X-VCS-Directories: defaults/ X-VCS-Committer: ryao X-VCS-Committer-Name: Richard Yao X-VCS-Revision: b8626e78ef1e534ee95a058d2a2b8f530d432aad X-VCS-Branch: master Date: Tue, 17 Jul 2012 20:25:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: b634eac0-c640-4dcd-9061-cc47d2047ceb X-Archives-Hash: a50cf71b4bb70102b49d06b410cfb892 commit: b8626e78ef1e534ee95a058d2a2b8f530d432aad Author: Richard Yao cs stonybrook edu> AuthorDate: Tue Jul 17 20:22:40 2012 +0000 Commit: Richard Yao gentoo org> CommitDate: Tue Jul 17 20:22:40 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/genkernel.git= ;a=3Dcommit;h=3Db8626e78 Fix typo in previous commit. --- defaults/initrd.scripts | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/defaults/initrd.scripts b/defaults/initrd.scripts index a2edeee..46364de 100755 --- a/defaults/initrd.scripts +++ b/defaults/initrd.scripts @@ -307,13 +307,13 @@ mount_devfs () { fi =20 # Options copied from /etc/init.d/udev-mount, should probably be kept i= n sync - if grep -qs grep '^devtmpfs' /proc/mounts; then + if grep -qs '^devtmpfs' /proc/mounts; then mount -t $devfs -o "exec,nosuid,mode=3D0755,size=3D10M" udev /dev \ || bad_msg "Failed to mount /dev as ${devfs}" fi =20 # http://git.busybox.net/busybox/plain/docs/mdev.txt - if grep -qs grep '^devpts' /proc/mounts; then + if grep -qs '^devpts' /proc/mounts; then mkdir -m 0755 /dev/pts mount -t devpts -o gid=3D5,mode=3D0620 devpts /dev/pts || bad_msg "Fa= iled to mount /dev/pts" fi