Subversion Repositories HelenOS-doc

Compare Revisions

Ignore whitespace Rev 5 → Rev 6

/design/trunk/src/index.xml
5,24 → 5,24
<title>HelenOS Design Documentation</title>
 
<chapter>
<title>Introduction to HelenOS</title>
<title>Introduction</title>
<graphic align="center" fileref="images/helenos.gif" />
 
<section>
<title>HelenOS Logo</title>
<para>The HelenOS project is an effort to develop an easily portable,
light but durable operating system. HelenOS supports SMP, multitasking
and multithreading on both 32-bit and 64-bit, little-endian and
big-endian, processor architectures, among wich are AMD64/EM64T
(x86-64), IA-32, IA-64 (Itanium), 32-bit MIPS, 32-bit PowerPC and SPARC
V9.</para>
 
<para>
<graphic align="left" fileref="images/helenos.gif" format="GIF" />
</para>
</section>
<para>This manual should help you understanding design concepts of
different part of the operating system.</para>
 
 
<section>
<title>Our hosting partner</title>
 
<para>
<graphic align="left" fileref="images/itbs.gif" format="GIF" />
</para>
</section>
<para>In case you are interested in our project or have any questions
about it, feel free to subscribe to our <ulink
url="http://www.helenos.eu/?reason=list">mailing list</ulink>. We are
looking for people to join our team or to merely try out our system and
become our beta testers.</para>
</chapter>
 
<chapter>
68,8 → 68,7
<section>
<title>Buddy allocator</title>
 
<para>Physical memory allocation is handled by buddy allocator.
</para>
<para>Physical memory allocation is handled by buddy allocator.</para>
</section>
 
<section>
/design/trunk/Makefile
51,12 → 51,14
 
html:
mkdir -p $(BUILD_HTML_DIR)
cp -R src/images $(BUILD_HTML_DIR)
mkdir -p $(BUILD_HTML_DIR)images
cp src/images/* $(BUILD_HTML_DIR)images
xsltproc --output $(BUILD_HTML_DIR)index.html $(DOCBOOK_DIR)html/docbook.xsl src/index.xml
 
pdf:
mkdir -p $(BUILD_PDF_DIR)
cp -R src/images $(BUILD_PDF_DIR)
mkdir -p $(BUILD_PDF_DIR)images
cp src/images/* $(BUILD_PDF_DIR)images
xsltproc --output $(BUILD_PDF_DIR)index.fo $(DOCBOOK_DIR)fo/docbook.xsl src/index.xml
 
$(FOP) -q -fo $(BUILD_PDF_DIR)index.fo -pdf $(BUILD_PDF_DIR)index.pdf