
Some background (You may skip ahead)
---
I have an electronics and some embed programming background, I just find it incredibly interesting to build stuff from scratch, be it a simple power adapter, or a 12 articulation, wi-fi capable, mechanic arm. So, over the years I've amassed a bast amount of ideas to develop, all heavy in hardware (lots of boards to design and produce), but none of them went live, mostly due to lack of time and money to buy the myriad of parts and tools; this, however, is about to change since my business plans are starting to show some profit.
Among this projects, there are: A house controlling system (domotics)(high performance, fully automated, etc, etc), an on-board car computer (providing all sorts of interesting stuff), a miniature airplane and submarine, a rather complicated mechanical arm(which, if proven to be good enough, will be the initial stage to build something bigger, who knows).
So, the need for an operative system appeared, for most things it's not gonna be enough to have an AVR chip with an small, limited and boring firmware. So I looked into a Linux based solution, a stripped down kernel, only the essential tools, etc. This model, though workable, presented a few problems, one of them being that Linux is not really a real time OS. Plus, on my own OS I can add all kinds of special features.
I then started thinking, why not, instead of using Linux, I could build my very own operative system, in such a way, every last instruction executed by the on board computers will have been programmed by me, I learn a lot of interesting stuff while doing it, and, of course, I can say "I wrote an operative system, and it works." as an added bonus.
And so the idea began developing in my head, and just yesterday I got a lot of parts, which, though I haven't thoroughly inspected, would suffice to build 3 small computers (all x86), which should be good enough as a starting point, right?
The basic idea
---
The system would share many features of UNIX systems that I find very nice, like, it would deal with everything as if it were a file, among other things (though it will most likely not be anywhere near POSIX).
I want the kernel to be capable of running on multiple architectures, though the initial testing will be purely on x86 (and most the embed systems I'm going to use are x86 anyways. Mostly Via Micro and Nano ITX boards).
I have thought of many features, and I have many more to think about, but some are:
-Real time task scheduler(specially useful for on board flight computer for instance, or emergency response on domotics(say, someone is electrocuting, so I really need to be able to cut off the power on that house sector)).
-Small footprint, monolithic kernel with on-demand loaded modules.
-Customized disk layout and boot loader (I don't quite like the model used currently, you know, MBR, partition table, I find it rather archaic and lacking in some features I would love to have).
-In the future, though this is not the final objective, I'd like to rewrite the whole system, kernel and applications, using a programming language of my own (I'm fascinated by compilers). I do not have any specifics on this, nor am I even sure I'll ever do such a thing, but I like the concept.
-Designed to run from the smallest systems possible(say, an AVR chip with a 20mhz clock and a few megabytes of ram) to the VIA mainboards with good performance, or even larger, x86_64, multi core, multi cpu systems (though not the aim, for non-embed things I would much rather use Linux).
-I'd like the system to load ELF files (I like the format).
-Some features that, though unique to my current understanding, are far too immature to post just yet.
I'd love to hear some feedback from you guys.
Oh, btw, the project codename is "Iodine", and it will most likely stay that way forever, since this is mainly for my personal use.