<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pub/users/cem/toxicos.git/Makefile, branch master</title>
<subtitle>[no description]</subtitle>
<link rel='alternate' type='text/html' href='http://toxiclabs.cc/cgit.cgi/pub/users/cem/toxicos.git/'/>
<entry>
<title>Add a path parsing mechanism</title>
<updated>2026-03-08T12:47:28+00:00</updated>
<author>
<name>Carlos Maiolino</name>
<email>cem@toxiclabs.cc</email>
</author>
<published>2026-03-08T12:37:37+00:00</published>
<link rel='alternate' type='text/html' href='http://toxiclabs.cc/cgit.cgi/pub/users/cem/toxicos.git/commit/?id=84b464a185d20d8e329b7aad0b482687a9705b58'/>
<id>84b464a185d20d8e329b7aad0b482687a9705b58</id>
<content type='text'>
Now the system can parse paths to files/directories.

It follows the same Unix standard namespace.

For now, only absolute paths are allowed.

The parse mechanism relies on the struct path_part. Which represents
each component on a single path.

All the components are chain-linked through path_part-&gt;next, where the
last path component will have -&gt;next == NULL.

This also introduces path_root struct, which represents the root of
the path.

The first component, linked to path_root-&gt;head, is always the "/" component.

The disk_id represents the disk the root directory is found into. This
should actually (and likely will) be a mountpoint not a disk id.

Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Now the system can parse paths to files/directories.

It follows the same Unix standard namespace.

For now, only absolute paths are allowed.

The parse mechanism relies on the struct path_part. Which represents
each component on a single path.

All the components are chain-linked through path_part-&gt;next, where the
last path component will have -&gt;next == NULL.

This also introduces path_root struct, which represents the root of
the path.

The first component, linked to path_root-&gt;head, is always the "/" component.

The disk_id represents the disk the root directory is found into. This
should actually (and likely will) be a mountpoint not a disk id.

Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>block: Add a simple block layer</title>
<updated>2026-02-24T20:12:39+00:00</updated>
<author>
<name>Carlos Maiolino</name>
<email>cem@toxiclabs.cc</email>
</author>
<published>2026-02-24T20:12:39+00:00</published>
<link rel='alternate' type='text/html' href='http://toxiclabs.cc/cgit.cgi/pub/users/cem/toxicos.git/commit/?id=150499dbea44a4ecf1689990ed915467a14abb02'/>
<id>150499dbea44a4ecf1689990ed915467a14abb02</id>
<content type='text'>
Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add ata driver</title>
<updated>2026-02-24T19:24:57+00:00</updated>
<author>
<name>Carlos Maiolino</name>
<email>cem@toxiclabs.cc</email>
</author>
<published>2026-02-24T07:13:48+00:00</published>
<link rel='alternate' type='text/html' href='http://toxiclabs.cc/cgit.cgi/pub/users/cem/toxicos.git/commit/?id=c96b289dc49c18ac36fb7e13242e5f855a56840e'/>
<id>c96b289dc49c18ac36fb7e13242e5f855a56840e</id>
<content type='text'>
Enable the kernel to read from an ATA device

Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Enable the kernel to read from an ATA device

Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Makefile: build paging infrastructure</title>
<updated>2025-10-07T06:19:25+00:00</updated>
<author>
<name>Carlos Maiolino</name>
<email>cem@toxiclabs.cc</email>
</author>
<published>2025-10-07T06:17:07+00:00</published>
<link rel='alternate' type='text/html' href='http://toxiclabs.cc/cgit.cgi/pub/users/cem/toxicos.git/commit/?id=89dd9fbedf488866c240990b970a4285b5a44324'/>
<id>89dd9fbedf488866c240990b970a4285b5a44324</id>
<content type='text'>
Add the paging infrastructure to the build system

Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add the paging infrastructure to the build system

Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Build heap and kernel_heap</title>
<updated>2025-09-14T12:19:41+00:00</updated>
<author>
<name>Carlos Maiolino</name>
<email>cem@toxiclabs.cc</email>
</author>
<published>2025-09-14T12:19:41+00:00</published>
<link rel='alternate' type='text/html' href='http://toxiclabs.cc/cgit.cgi/pub/users/cem/toxicos.git/commit/?id=364b023b2c50a7e810bf4f975150fc50c179e135'/>
<id>364b023b2c50a7e810bf4f975150fc50c179e135</id>
<content type='text'>
Wire the build of both the heap API and the kernel_heap
in the Makefile

Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Wire the build of both the heap API and the kernel_heap
in the Makefile

Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Setup interrupt handling</title>
<updated>2025-08-01T19:03:16+00:00</updated>
<author>
<name>Carlos Maiolino</name>
<email>cem@toxiclabs.cc</email>
</author>
<published>2025-08-01T19:03:16+00:00</published>
<link rel='alternate' type='text/html' href='http://toxiclabs.cc/cgit.cgi/pub/users/cem/toxicos.git/commit/?id=2725b95a1f78d2feac553d37252f2e560c2f9aac'/>
<id>2725b95a1f78d2feac553d37252f2e560c2f9aac</id>
<content type='text'>
Remap master PIC to IOAddress 0x20 to avoid collisions with CPU
exceptions.

Setup a default interrupt handler and map all interrupts to this handler
by default.

Setup a Keyboard interrupt handler for testing purposes

Wire everything up in the Makefile

Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remap master PIC to IOAddress 0x20 to avoid collisions with CPU
exceptions.

Setup a default interrupt handler and map all interrupts to this handler
by default.

Setup a Keyboard interrupt handler for testing purposes

Wire everything up in the Makefile

Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement interrupt descriptor table</title>
<updated>2025-08-01T11:07:38+00:00</updated>
<author>
<name>Carlos Maiolino</name>
<email>cem@toxiclabs.cc</email>
</author>
<published>2025-07-26T13:32:32+00:00</published>
<link rel='alternate' type='text/html' href='http://toxiclabs.cc/cgit.cgi/pub/users/cem/toxicos.git/commit/?id=57d8e2b236c7a185bdd941c247ef0dcc5961a24e'/>
<id>57d8e2b236c7a185bdd941c247ef0dcc5961a24e</id>
<content type='text'>
Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Build vga and string libs</title>
<updated>2025-07-25T06:28:53+00:00</updated>
<author>
<name>Carlos Maiolino</name>
<email>cem@toxiclabs.cc</email>
</author>
<published>2025-07-25T06:28:53+00:00</published>
<link rel='alternate' type='text/html' href='http://toxiclabs.cc/cgit.cgi/pub/users/cem/toxicos.git/commit/?id=02a4f7fa2100809d84b93dbe8d6c828e4768ad41'/>
<id>02a4f7fa2100809d84b93dbe8d6c828e4768ad41</id>
<content type='text'>
Also add a small test to the kernel code

Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also add a small test to the kernel code

Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix boot.bin build</title>
<updated>2025-07-21T18:32:07+00:00</updated>
<author>
<name>Carlos Maiolino</name>
<email>cem@toxiclabs.cc</email>
</author>
<published>2025-07-21T18:32:07+00:00</published>
<link rel='alternate' type='text/html' href='http://toxiclabs.cc/cgit.cgi/pub/users/cem/toxicos.git/commit/?id=192cc29e2288ec51084cb0b3572b358b50de2c95'/>
<id>192cc29e2288ec51084cb0b3572b358b50de2c95</id>
<content type='text'>
Previous patch TARGET variable definition got removed. I forgot
to update its users....

Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previous patch TARGET variable definition got removed. I forgot
to update its users....

Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Tidy up Makefile</title>
<updated>2025-07-20T14:02:49+00:00</updated>
<author>
<name>Carlos Maiolino</name>
<email>cem@toxiclabs.cc</email>
</author>
<published>2025-07-20T14:02:49+00:00</published>
<link rel='alternate' type='text/html' href='http://toxiclabs.cc/cgit.cgi/pub/users/cem/toxicos.git/commit/?id=05a32c2b36552deff0c74a2aab8de07811eb92b1'/>
<id>05a32c2b36552deff0c74a2aab8de07811eb92b1</id>
<content type='text'>
Remove some duplicate code by creating a few variables

Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove some duplicate code by creating a few variables

Signed-off-by: Carlos Maiolino &lt;cem@toxiclabs.cc&gt;
</pre>
</div>
</content>
</entry>
</feed>
