Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] baselayout r3206 - trunk/share.Linux
Date: Mon, 28 Jan 2013 23:50:13
Message-Id: 20130128235009.1CE492171D@flycatcher.gentoo.org
1 Author: vapier
2 Date: 2013-01-28 23:49:05 +0000 (Mon, 28 Jan 2013)
3 New Revision: 3206
4
5 Modified:
6 trunk/share.Linux/fstab
7 Log:
8 fstab: default to using ext4 to mount things #451596
9
10 Modified: trunk/share.Linux/fstab
11 ===================================================================
12 --- trunk/share.Linux/fstab 2013-01-25 05:58:58 UTC (rev 3205)
13 +++ trunk/share.Linux/fstab 2013-01-28 23:49:05 UTC (rev 3206)
14 @@ -14,8 +14,10 @@
15 # <fs> <mountpoint> <type> <opts> <dump/pass>
16
17 # NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
18 -/dev/BOOT /boot ext2 noauto,noatime 1 2
19 -/dev/ROOT / ext3 noatime 0 1
20 +# NOTE: Even though we list ext4 as the type here, it will work with ext2/ext3
21 +# filesystems. This just tells the kernel to use the ext4 driver.
22 +/dev/BOOT /boot ext4 noauto,noatime 1 2
23 +/dev/ROOT / ext4 noatime 0 1
24 /dev/SWAP none swap sw 0 0
25 /dev/cdrom /mnt/cdrom auto noauto,ro 0 0
26 /dev/fd0 /mnt/floppy auto noauto 0 0