12

Me and a fellow coder friend are looking to create our own operating system (OS). We're looking to create a Java-based OS, so I would love to poke about the JNode OS for inspiration.

Is there a way to run JNode, and our own OS, on the Raspberry Pi?

Peter Mortensen
  • 2,004
  • 2
  • 15
  • 18
Kezz
  • 223
  • 3
  • 11

2 Answers2

8

I'm not sure about Jnode, but the Computer Laboratory at Cambridge University has a short course on OS development on the Raspberry Pi that you might be interested in:

Baking Pi - Operating Systems Development

rasper
  • 276
  • 1
  • 3
  • 7
  • Thank you! I found that article very interesting... It'll certainly help in the long run! – Kezz Sep 07 '12 at 19:27
3

You are in for a lot of pain if you go the Java way. Also operating systems capable of actually doing anything interesting takes much more work than you most likely think.

JNode requires as of now more memory than the Pi has and is not ported to the Raspberry, so it will require quite a bit of elbow grease to get up and running.

You might find it much more rewarding in terms of actually getting the computer to do something, to do some work on completing driver support on the Linux distribution you end up using. Raspbian seems to be where the momentum are these days.