Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/genkernel:experimental commit in: defaults/
Date: Mon, 07 Feb 2011 03:30:57
Message-Id: 763fd09bacda81255d1244c767e921cfc48b9032.sping@gentoo
1 commit: 763fd09bacda81255d1244c767e921cfc48b9032
2 Author: Sebastian Pipping <sebastian <AT> pipping <DOT> org>
3 AuthorDate: Mon Feb 7 03:09:25 2011 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 7 03:09:25 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/genkernel.git;a=commit;h=763fd09b
7
8 Remove "-a" from call to umount
9
10 ---
11 defaults/linuxrc | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/defaults/linuxrc b/defaults/linuxrc
15 index 88eed00..b42070c 100755
16 --- a/defaults/linuxrc
17 +++ b/defaults/linuxrc
18 @@ -731,7 +731,7 @@ if grep -qs devtmpfs /proc/mounts
19 then
20 if ! mount --move /dev "${CHROOT}"/dev
21 then
22 - umount -a -t devtmpfs || echo '*: Failed to move and unmount the devtmpfs /dev!'
23 + umount -t devtmpfs || echo '*: Failed to move and unmount the devtmpfs /dev!'
24 fi
25 fi