Page 1 of 2
Best Open Source Kernels
Posted: Sat May 19, 2012 6:06 pm
by vincelawrence
Sup guys! Any suggestions of best open source kernels out there?
Just your opinion guys!
Re: Best Open Source Kernels
Posted: Sat May 19, 2012 6:22 pm
by VolTeK
Re: Best Open Source Kernels
Posted: Sat May 19, 2012 6:32 pm
by vincelawrence
Your suggestions except those things, just to brainstorm ideas
Re: Best Open Source Kernels
Posted: Sat May 19, 2012 6:33 pm
by gravaera
I freaking love Voltek's post...
Re: Best Open Source Kernels
Posted: Sat May 19, 2012 6:37 pm
by vincelawrence
NVM, i found a complete list of kernels
THANKS FOR ... huh?
Re: Best Open Source Kernels
Posted: Sat May 19, 2012 6:38 pm
by bubach
Well, that would have to be.. mine. Obviously.
Re: Best Open Source Kernels
Posted: Sat May 19, 2012 7:54 pm
by LindusSystem
Also look at the OS Projects Page and Resources Page(OS Project has so many and Resources has category as small and large)
Re: Best Open Source Kernels
Posted: Sat May 19, 2012 8:00 pm
by vincelawrence
@LindusSystem: Didn't saw that, thanks!
Re: Best Open Source Kernels
Posted: Sun May 20, 2012 12:36 am
by iansjack
Could you define what you mean by "best", please. What criteria are you interested in?
(My own choice would be FreeBSD.)
Re: Best Open Source Kernels
Posted: Sun May 20, 2012 2:02 am
by vincelawrence
Similar to Linux but not Linux
Edit:I like how they made FreeBSD!
Re: Best Open Source Kernels
Posted: Sun May 20, 2012 5:53 am
by iansjack
vincelawrence wrote:Similar to Linux but not Linux
Edit:I like how they made FreeBSD!
Well, of course it's similar to Linux. it's a descendant of Unix and Linux was based on Unix. So what? That's true of many OSs.
What do you like about "the way they made it"? That doesn't. Really mean anything to me. Could you explain specifically what you like about it?
Re: Best Open Source Kernels
Posted: Sun May 20, 2012 6:06 am
by bluemoon
I'm sure the best open source kernel the following one,
Almost every os developer fork this OS
Code: Select all
// HelloOS 1.0 (Public Domain)
int x=0, y=0;
void kputc(char c) {
volatile char* video = (volatile char*)0xB8000;
video[(y*80+x)*2] = c;
video[(y*80+x)*2+1] = 7;
if ( (++x) == 80 ) {
y++; x = 0; // TODO: handle y>24
}
}
void kputs(const char* s) {
for ( ; *s; s++ ) kputc(*s);
}
void kmain() {
kputs ("Hello World!");
__asm volatile ("hlt");
}
Re: Best Open Source Kernels
Posted: Sun May 20, 2012 8:45 am
by AndrewAPrice
Staying in the Unix world - how about Minix?
Re: Best Open Source Kernels
Posted: Sun May 20, 2012 2:00 pm
by DavidCooper
bluemoon wrote:I'm sure the best open source kernel the following one,
Almost every os developer fork this OS
I haven't got round to doing that part of my OS yet, but I've often wondered who started this weird tradition?
Re: Best Open Source Kernels
Posted: Sun May 20, 2012 2:04 pm
by JamesM
Pedigree.