Prerequisites

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply

Should a new type of kernel be developed?

Yes
6
55%
No
5
45%
 
Total votes: 11

#XVryCmplxAlgrthmX#
Posts: 1
Joined: Fri Jul 27, 2007 8:02 am

Prerequisites

Post by #XVryCmplxAlgrthmX# »

[b]Requirements before beginning? Is there an order in which I must develop certain parts of the OS? :idea: [/b]
#*****----GCSComplexAlgorithm----*****#
User avatar
AJ
Member
Member
Posts: 2646
Joined: Sun Oct 22, 2006 7:01 am
Location: Devon, UK
Contact:

Post by AJ »

Hi,

1) Why the poll?

2) The development order of a new OS has been discussed lots before and there is a specific article on the wiki on how to get started. In stubs, see also the Eleanor Semaphore, Lino Commando and James T. Click articles. The Getting Started section has something on prerequisites too.

3) What are you thinking when you say a new type of kernel?

Cheers,
Adam
frank
Member
Member
Posts: 729
Joined: Sat Dec 30, 2006 2:31 pm
Location: East Coast, USA

Post by frank »

Requirements before beginning:
  • * Good understanding of assembly
    * Good understanding of C (if you plan on using C in your kernel)
    * Good understanding of how all of the different parts of a computer work together
    * You need to understand that you cannot just write a fully working OS like XP or Linux in a couple of weeks or months
    * Good understanding of how to use a compiler and assembler
That's about all I can think of right now.
User avatar
Alboin
Member
Member
Posts: 1466
Joined: Thu Jan 04, 2007 3:29 pm
Location: Noricum and Pannonia

Post by Alboin »

You should know how to program, and how to read documentation with more than "Hello World" experience.

You should be able to think past the programming language. Think of how something can be done without thinking about the language. Be abstract. Let the language be an extension of yourself. Flow with it, love it; be one with the language.

A healthy supply of tea is also handy. ;) (That's true for any programming task, actually.)
C8H10N4O2 | #446691 | Trust the nodes.
User avatar
Candy
Member
Member
Posts: 3882
Joined: Tue Oct 17, 2006 11:33 pm
Location: Eindhoven

Post by Candy »

I'm also not sure what to do with the poll.

If I were you I would research other people's accomplishments until you know what you want to develop, how you want to do that and where to expect the largest problems. Once you do, just code it, test it and release it.

This is OS Dev. Nobody tells you what to do. If you want to limit applications to nonrecursive functions without using a stack at all, be our guest. If you want to allow hair-raisingly quick threads, be my guest. If you want to try something none of us would even believe is possible, just do it.

The order isn't important unless you can prove one of the ways to be impossible. Developing a userland before doing the kernel for instance is pretty hard. On the other hand, I see many people here integrate what I would call "userland" with the kernel initially, in the same way that RTOSes do.
User avatar
XCHG
Member
Member
Posts: 416
Joined: Sat Nov 25, 2006 3:55 am
Location: Wisconsin
Contact:

Post by XCHG »

In my opinion, there must be a certain and generic order in which things need to be developed for at least beginner OS Developers. A beginner doesn't know much about OS development thus he or she won't be able to make decisions about the things that need to be designed and coded first and those that come after that. It is like asking a 3 year old kid to decide what college he wants to go to and what Masters degree he wants to pursue. I think it'd help if the three year old at least knew what college degrees were available, what their benefits were, why people pursue them and etc.
On the field with sword and shield amidst the din of dying of men's wails. War is waged and the battle will rage until only the righteous prevails.
User avatar
Candy
Member
Member
Posts: 3882
Joined: Tue Oct 17, 2006 11:33 pm
Location: Eindhoven

Post by Candy »

XCHG wrote:In my opinion, there must be a certain and generic order in which things need to be developed for at least beginner OS Developers. A beginner doesn't know much about OS development thus he or she won't be able to make decisions about the things that need to be designed and coded first and those that come after that. It is like asking a 3 year old kid to decide what college he wants to go to and what Masters degree he wants to pursue. I think it'd help if the three year old at least knew what college degrees were available, what their benefits were, why people pursue them and etc.
Did you read the first part of my reply?
User avatar
XCHG
Member
Member
Posts: 416
Joined: Sat Nov 25, 2006 3:55 am
Location: Wisconsin
Contact:

Post by XCHG »

Yes. Why?
On the field with sword and shield amidst the din of dying of men's wails. War is waged and the battle will rage until only the righteous prevails.
User avatar
Candy
Member
Member
Posts: 3882
Joined: Tue Oct 17, 2006 11:33 pm
Location: Eindhoven

Post by Candy »

XCHG wrote:Yes. Why?
It sort of pointed out where I would expect people to find usable orders to make things in - by following in the footsteps of those who have made OSes and learning from their mistakes.
Post Reply