What does your OS look like? (Screen Shots..)

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.
deleted8917
Member
Member
Posts: 119
Joined: Wed Dec 12, 2018 12:16 pm

Re: What does your OS look like? (Screen Shots..)

Post by deleted8917 »

Nothing impressive or of the other world, has no paging, multitasking, or executables files yet. (well, sincerely I have no idea how to do it, but well ... :( ) At least it's something more than a simple bootloader that just prints "Hello world". :)
Only haves an 80x25 screen resolution, text only. Who needs GUI? A simple shell is enough for everyone! You can have a fancy OS with beautiful GUI, but the kernel can be buggy, or not fully functional. (there are exceptions) Or you can have a ugly shell, but a fully functional kernel.
Image
yuuma
Member
Member
Posts: 35
Joined: Fri Jun 02, 2017 3:01 pm

Re: What does your OS look like? (Screen Shots..)

Post by yuuma »

Now CHicago have it's own assembler + linker for the userspace, with a custom executable format.

Image
User avatar
K3achas
Posts: 22
Joined: Sat May 26, 2018 5:32 pm

Re: What does your OS look like? (Screen Shots..)

Post by K3achas »

All the non-efi stuff (except the loaders) are written for my OS. Now just to find the framebuffer, load the driver and kernel files, and set up virtual memory.
Attachments
boot0.gif
The maker of Foxtrot microkernels. Currently just Greyhound, which is currently smaller than 3 KiB.
Also working on osmkVII.
User avatar
pvc
Member
Member
Posts: 201
Joined: Mon Jan 15, 2018 2:27 pm

Re: What does your OS look like? (Screen Shots..)

Post by pvc »

@K3achas Lol, nice messages :)
Crupette
Posts: 4
Joined: Fri Jan 11, 2019 7:30 pm

Re: What does your OS look like? (Screen Shots..)

Post by Crupette »

First time posting to this forum
This is an image of my kernel loading a kernel object
Also added a /dev/zero!
Also added a /dev/zero!
mallard
Member
Member
Posts: 280
Joined: Tue May 13, 2014 3:02 am
Location: Private, UK

Re: What does your OS look like? (Screen Shots..)

Post by mallard »

I've not posted a screenshot for a little while since I've largely been working on "invisible" back-end stuff, like hardware autodetection, package management, etc. and haven't had much to show... I've recently returned to working on UI-related stuff, so here goes:

Image

This shows a few "prototype" GUI apps I built relatively quickly based on a port of SDL Widgets (whose stock test program is also visible). At the bottom of the screen, you can see my very early work-in-progress on my own GUI widget system.

EDIT: Here's a bonus screenshot of a much higher resolution display with (nearly; there is evidence of the missing one...) every GUI application that exists for BT/OS visible, along with a bit more work on my widgets:

Image
(Click for full size)
Last edited by mallard on Thu Feb 28, 2019 2:41 pm, edited 3 times in total.
Image
User avatar
max
Member
Member
Posts: 616
Joined: Mon Mar 05, 2012 11:23 am
Freenode IRC: maxdev
Location: Germany
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by max »

mallard, I'm very impressed, nice progress. keep going!
User avatar
BenLunt
Member
Member
Posts: 934
Joined: Sat Nov 22, 2014 6:33 pm
Location: USA
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by BenLunt »

Hi guys,

I decided to update my code base a little. The following is a quick screen shot, nothing fancy, but (if sound was included) you can see that I now (mostly) support the AC97 sound card.

Image

As a side note, I decided to let it boot at 640x480x32 and of course the background image is a little larger and "bleeds" to the top. I will have to fix this.

Anyway, after the interest in the AC97 Post, and after reading over the specs, I decided to see what I could come up with. Surprisingly, the AC97 is actually quite simple to program, once I clarified a few things with different documents.

Anyway, I have an updated (USB) bootable hard drive image (20 Meg) at the home page or a direct link (7 meg zipped).

It is a Lean FS image with the boot and kernel files, fonts, various image formats and now, various sound formats as shown in the listing in the image above.

The GUI runs fine (though a bit slow) in an emulator, i.e.: all images are visible, even the animated .GIFs and animated .PNGs. It runs a lot faster on real hardware since it takes advantage of the hardware's fast memory move features, but some of the images now don't display at all. uuhhmmm. I will have to investigate this.

Anyway, just thought I would put up an update. Thanks to everyone here for keeping this hobby interesting.

Ben
- http://www.fysnet.net/osdesign_book_series.htm
deleted8917
Member
Member
Posts: 119
Joined: Wed Dec 12, 2018 12:16 pm

Re: What does your OS look like? (Screen Shots..)

Post by deleted8917 »

BenLunt wrote:Hi guys,

I decided to update my code base a little. The following is a quick screen shot, nothing fancy, but (if sound was included) you can see that I now (mostly) support the AC97 sound card.

Image

As a side note, I decided to let it boot at 640x480x32 and of course the background image is a little larger and "bleeds" to the top. I will have to fix this.

Anyway, after the interest in the AC97 Post, and after reading over the specs, I decided to see what I could come up with. Surprisingly, the AC97 is actually quite simple to program, once I clarified a few things with different documents.

Anyway, I have an updated (USB) bootable hard drive image (20 Meg) at the home page or a direct link (7 meg zipped).

It is a Lean FS image with the boot and kernel files, fonts, various image formats and now, various sound formats as shown in the listing in the image above.

The GUI runs fine (though a bit slow) in an emulator, i.e.: all images are visible, even the animated .GIFs and animated .PNGs. It runs a lot faster on real hardware since it takes advantage of the hardware's fast memory move features, but some of the images now don't display at all. uuhhmmm. I will have to investigate this.

Anyway, just thought I would put up an update. Thanks to everyone here for keeping this hobby interesting.

Ben
- http://www.fysnet.net/osdesign_book_series.htm
Excelent work Ben!
alnyan
Posts: 9
Joined: Thu Mar 07, 2019 2:31 am
Freenode IRC: alnyan
Location: Kyiv, Ukraine

Re: What does your OS look like? (Screen Shots..)

Post by alnyan »

After I've started rewriting the whole scheduler/syscall/task/vfs thing, there's not much to show, but now the kernel supports kernel-mode tasks.
Image
And with vesa framebuffer console:
Image

Here's also a screenshot from before I've started the rewrite - signal handling in userspace:
Image
User avatar
Seahorse
Member
Member
Posts: 64
Joined: Sat Dec 03, 2016 3:13 am

Re: What does your OS look like? (Screen Shots..)

Post by Seahorse »

mallard wrote:I've not posted a screenshot for a little while since I've largely been working on "invisible" back-end stuff, like hardware autodetection, package management, etc. and haven't had much to show... I've recently returned to working on UI-related stuff, so here goes:

Image

This shows a few "prototype" GUI apps I built relatively quickly based on a port of SDL Widgets (whose stock test program is also visible). At the bottom of the screen, you can see my very early work-in-progress on my own GUI widget system.

EDIT: Here's a bonus screenshot of a much higher resolution display with (nearly; there is evidence of the missing one...) every GUI application that exists for BT/OS visible, along with a bit more work on my widgets:

Image
(Click for full size)
Looks like Windows 3.x and 9x have been mixed together.
coderTrevor
Posts: 10
Joined: Fri Mar 22, 2019 12:34 pm

Re: What does your OS look like? (Screen Shots..)

Post by coderTrevor »

Hello, World!
Here's the culmination of about 3 to 4 weeks of work in my free time:

Image

Of course it's still missing tons of basic functionality, but since it can load and run an executable, I believe it has just reached the point of being an operating system. :D
User avatar
bellezzasolo
Member
Member
Posts: 110
Joined: Sun Feb 20, 2011 2:01 pm

Re: What does your OS look like? (Screen Shots..)

Post by bellezzasolo »

A new, UEFI based, kernel
And yes, the APs are all started up (trying to boot another OS afterwards hangs, since the SIPIs are lost)
Topology code (UEFI startup)
Topology code (UEFI startup)
Debugging BST implementation
Debugging BST implementation
Stack allocation
Stack allocation
https://github.com/ChaiSoft/ChaiOS
Last edited by bellezzasolo on Sun Mar 24, 2019 6:49 pm, edited 1 time in total.
Whoever said you can't do OS development on Windows?
https://github.com/ChaiSoft/ChaiOS
Korona
Member
Member
Posts: 999
Joined: Thu May 17, 2007 1:27 pm
Contact:

Re: What does your OS look like? (Screen Shots..)

Post by Korona »

In the last few months, I did not do much work on ports. Nevertheless, today I decided to implement the missing stuff for ncurses and nano.

Apart from that, a new major feature in managarm is that userspace drivers can now upload eBPF-like programs to the kernel. The programs are written using C++ expression templates (as in this example), compiled to x86_64 ELF shared libraries by my new SSA compiler library (called lewis), and inserted as kernel modules. This is used to process interrupt handlers synchronously (which previously had to be asynchronously in a mask-irq/wake-drivers/unmask-irq cycle). Hence, this feature improves performance by closing the gap in IRQ latency with respect to monolithic kernels.
Attachments
nano.png
managarm: Microkernel-based OS capable of running a Wayland desktop (Discord: https://discord.gg/7WB6Ur3). My OS-dev projects: [mlibc: Portable C library for managarm, qword, Linux, Sigma, ...] [LAI: AML interpreter] [xbstrap: Build system for OS distributions].
nck
Posts: 1
Joined: Sat Mar 02, 2019 6:10 pm

Re: What does your OS look like? (Screen Shots..)

Post by nck »

I'm trying to learn how to write a simple OS.. here it is! MiaOS
UEFI app style OS written in C and gnu-efi

https://imgur.com/a/bQMU5Ff
Attachments
800x600
800x600
1920x1080 (full screen qemu)
1920x1080 (full screen qemu)
Post Reply