swift 11/09/17 12:16:10
Modified: hb-install-filesystems.xml hb-install-hppa-disk.xml
Log:
Bug #334167 - Add ext4 information for HPPA architecture
Revision Changes Path
1.9 xml/htdocs/doc/en/handbook/hb-install-filesystems.xml
file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-filesystems.xml?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-filesystems.xml?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-filesystems.xml?r1=1.8&r2=1.9
Index: hb-install-filesystems.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-filesystems.xml,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- hb-install-filesystems.xml 4 Sep 2011 14:34:01 -0000 1.8
+++ hb-install-filesystems.xml 17 Sep 2011 12:16:09 -0000 1.9
@@ -1,11 +1,11 @@
<?xml version='1.0' encoding="UTF-8"?>
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-filesystems.xml,v 1.8 2011/09/04 14:34:01 swift Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-filesystems.xml,v 1.9 2011/09/17 12:16:09 swift Exp $ -->
<!DOCTYPE included SYSTEM "/dtd/guide.dtd">
<included>
-<version>6</version>
-<date>2011-09-04</date>
+<version>7</version>
+<date>2011-09-17</date>
<section id="filesystemsdesc">
<title>Filesystems</title>
@@ -38,7 +38,7 @@
</p>
<p test="func:keyval('arch')='HPPA'">
-Several filesystems are available. Ext2, ext3, XFS and reiserfs are found
+Several filesystems are available. Ext2, ext3, ext4, XFS and reiserfs are found
stable on the HPPA architecture. The others are very experimental.
</p>
@@ -103,7 +103,7 @@
filesystem by running <c>mke2fs -j -T small /dev/<device></c>.
</p>
-<p test="contains('x86 Alpha MIPS AMD64 arm IA64 SPARC',func:keyval('arch'))">
+<p test="contains('x86 Alpha MIPS AMD64 arm IA64 SPARC HPPA',func:keyval('arch'))">
<b>ext4</b> is a filesystem created as a fork of ext3 bringing new features,
performance improvements and removal of size limits with moderate changes
to the on-disk format. It can span volumes up to 1 EB and with maximum file
1.28 xml/htdocs/doc/en/handbook/hb-install-hppa-disk.xml
file : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-hppa-disk.xml?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-hppa-disk.xml?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo/xml/htdocs/doc/en/handbook/hb-install-hppa-disk.xml?r1=1.27&r2=1.28
Index: hb-install-hppa-disk.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-hppa-disk.xml,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- hb-install-hppa-disk.xml 20 Jul 2010 00:05:24 -0000 1.27
+++ hb-install-hppa-disk.xml 17 Sep 2011 12:16:09 -0000 1.28
@@ -4,12 +4,12 @@
<!-- The content of this document is licensed under the CC-BY-SA license -->
<!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-hppa-disk.xml,v 1.27 2010/07/20 00:05:24 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/handbook/hb-install-hppa-disk.xml,v 1.28 2011/09/17 12:16:09 swift Exp $ -->
<sections>
-<version>10.0</version>
-<date>2010-07-19</date>
+<version>11</version>
+<date>2011-09-17</date>
<section>
<title>Introduction to Block Devices</title>
@@ -189,11 +189,15 @@
</tr>
<tr>
<ti>ext2</ti>
- <ti><c>mke2fs</c></ti>
+ <ti><c>mkfs.ext2</c></ti>
</tr>
<tr>
<ti>ext3</ti>
- <ti><c>mke2fs -j</c></ti>
+ <ti><c>mkfs.ext3</c></ti>
+</tr>
+<tr>
+ <ti>ext4</ti>
+ <ti><c>mkfs.ext4</c></ti>
</tr>
<tr>
<ti>reiserfs</ti>
@@ -216,8 +220,8 @@
</p>
<pre caption="Applying a filesystem on a partition">
-# <i>mke2fs /dev/sda2</i>
-# <i>mke2fs -j /dev/sda4</i>
+# <i>mkfs.ext2 /dev/sda2</i>
+# <i>mkfs.ext3 /dev/sda4</i>
</pre>
<p>
|