Subversion Repositories HelenOS-doc

Compare Revisions

No changes between revisions

Ignore whitespace Rev 4 → Rev 5

/design/trunk/src/images/helenos.gif
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/design/trunk/src/images/itbs.gif
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/design/trunk/src/index.xml
2,15 → 2,105
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
<book>
<title>HelenOS DocBook</title>
<title>HelenOS Design Documentation</title>
 
<chapter>
<title>Installation</title>
<title>Introduction to HelenOS</title>
 
<section>
<title>Section #1</title>
<title>HelenOS Logo</title>
 
<para>Hello world!</para>
<para>
<graphic align="left" fileref="images/helenos.gif" format="GIF" />
</para>
</section>
 
 
<section>
<title>Our hosting partner</title>
 
<para>
<graphic align="left" fileref="images/itbs.gif" format="GIF" />
</para>
</section>
</chapter>
</book>
 
<chapter>
<title>Architecture review</title>
 
<para></para>
</chapter>
 
<chapter>
<title>Scheduling</title>
 
<para></para>
</chapter>
 
<chapter>
<title>Synchronization</title>
 
<section>
<title></title>
 
<para></para>
</section>
</chapter>
 
<chapter>
<title>Memory management</title>
 
<section>
<title>Virtual memory management</title>
 
<para></para>
</section>
 
<section>
<title>Physical memory management</title>
 
<para></para>
</section>
 
<section>
<title>Kernel allocators</title>
 
<section>
<title>Buddy allocator</title>
 
<para>Physical memory allocation is handled by buddy allocator.
</para>
</section>
 
<section>
<title>Slab allocator</title>
 
<para></para>
</section>
</section>
 
<section>
<title>Memory sharing</title>
 
<para></para>
</section>
</chapter>
 
<chapter>
<title>Hardware handling. Device drivers.</title>
 
<para></para>
</chapter>
 
<chapter>
<title>IPC</title>
 
<para></para>
</chapter>
 
<chapter>
<title>User-space</title>
 
<para></para>
</chapter>
</book>
/design/trunk/Makefile
51,10 → 51,12
 
html:
mkdir -p $(BUILD_HTML_DIR)
cp -R src/images $(BUILD_HTML_DIR)
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)
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