Best Open Source Kernels
- vincelawrence
- Posts: 19
- Joined: Thu May 17, 2012 5:02 pm
- Location: PH - Luzon - Tanay, Rizal
Best Open Source Kernels
Sup guys! Any suggestions of best open source kernels out there?
Just your opinion guys!
Just your opinion guys!
Sin is pleasure!
- vincelawrence
- Posts: 19
- Joined: Thu May 17, 2012 5:02 pm
- Location: PH - Luzon - Tanay, Rizal
Re: Best Open Source Kernels
Your suggestions except those things, just to brainstorm ideas
Sin is pleasure!
- gravaera
- Member
- Posts: 737
- Joined: Tue Jun 02, 2009 4:35 pm
- Location: Supporting the cause: Use \tabs to indent code. NOT \x20 spaces.
Re: Best Open Source Kernels
I freaking love Voltek's post...
17:56 < sortie> Paging is called paging because you need to draw it on pages in your notebook to succeed at it.
- vincelawrence
- Posts: 19
- Joined: Thu May 17, 2012 5:02 pm
- Location: PH - Luzon - Tanay, Rizal
Re: Best Open Source Kernels
NVM, i found a complete list of kernels
THANKS FOR ... huh?
THANKS FOR ... huh?
Sin is pleasure!
Re: Best Open Source Kernels
Well, that would have to be.. mine. Obviously.
-
- Member
- Posts: 63
- Joined: Sat Apr 28, 2012 9:41 am
- Location: Earth -> Asia
Re: Best Open Source Kernels
Also look at the OS Projects Page and Resources Page(OS Project has so many and Resources has category as small and large)
Anyone has a idea of making a ntfs bootsector?if yes PM me , plz.
- vincelawrence
- Posts: 19
- Joined: Thu May 17, 2012 5:02 pm
- Location: PH - Luzon - Tanay, Rizal
Re: Best Open Source Kernels
Could you define what you mean by "best", please. What criteria are you interested in?
(My own choice would be FreeBSD.)
(My own choice would be FreeBSD.)
- vincelawrence
- Posts: 19
- Joined: Thu May 17, 2012 5:02 pm
- Location: PH - Luzon - Tanay, Rizal
Re: Best Open Source Kernels
Similar to Linux but not Linux
Edit:I like how they made FreeBSD!
Edit:I like how they made FreeBSD!
Sin is pleasure!
Re: Best Open Source Kernels
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.vincelawrence wrote:Similar to Linux but not Linux
Edit:I like how they made FreeBSD!
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
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");
}
- AndrewAPrice
- Member
- Posts: 2298
- Joined: Mon Jun 05, 2006 11:00 pm
- Location: USA (and Australia)
- DavidCooper
- Member
- Posts: 1150
- Joined: Wed Oct 27, 2010 4:53 pm
- Location: Scotland
Re: Best Open Source Kernels
I haven't got round to doing that part of my OS yet, but I've often wondered who started this weird tradition?bluemoon wrote:I'm sure the best open source kernel the following one, Almost every os developer fork this OS
Code: Select all
... kputs ("Hello World!"); ...
Help the people of Laos by liking - https://www.facebook.com/TheSBInitiative/?ref=py_c
MSB-OS: http://www.magicschoolbook.com/computing/os-project - direct machine code programming
MSB-OS: http://www.magicschoolbook.com/computing/os-project - direct machine code programming