OSDev.org

The Place to Start for Operating System Developers
It is currently Thu Mar 28, 2024 9:16 am

All times are UTC - 6 hours




Post new topic Reply to topic  [ 3898 posts ]  Go to page Previous  1 ... 220, 221, 222, 223, 224, 225, 226 ... 260  Next
Author Message
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat Sep 29, 2018 7:47 am 
Offline
Member
Member

Joined: Thu Jul 03, 2014 5:18 am
Posts: 84
Location: The Netherlands
Did some UI work and added my compiler/VM to it. Here you can see it running on some real hardware :)
Don't mind the date/time, the CMOS battery of this machine is dead.

Image

_________________
My blog: http://www.rivencove.com/


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Tue Oct 09, 2018 8:40 pm 
Offline
Member
Member

Joined: Wed Mar 30, 2011 12:31 am
Posts: 676
Progress in my quest to get a full toolchain working again under my new libc - binutils builds and appears to be working.

Image

_________________
toaruos on github | toaruos.org | gitlab | twitter | bim - a text editor


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Thu Oct 11, 2018 10:27 am 
Offline
Member
Member
User avatar

Joined: Wed Aug 08, 2012 6:39 am
Posts: 42
Location: New York, NY
klange wrote:
Progress in my quest to get a full toolchain working again under my new libc - binutils builds and appears to be working.


This is amazing. Great progress!

_________________
Cheers,

Lev


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri Oct 12, 2018 1:08 am 
Offline
Member
Member

Joined: Wed Mar 30, 2011 12:31 am
Posts: 676
I didn't expect this followup to be so quick, but, gcc:

Image

A lot of weird little things between having gotten it to build at all and successfully getting it to compile something, but it seems to be working and for a large, complex source file.

_________________
toaruos on github | toaruos.org | gitlab | twitter | bim - a text editor


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Mon Oct 15, 2018 3:23 pm 
Offline
Member
Member

Joined: Thu Jul 03, 2014 5:18 am
Posts: 84
Location: The Netherlands
Finally building a window manager on top of the OS. You can see I'm quite a fan of the old Apple System 6 design :D.

Image

_________________
My blog: http://www.rivencove.com/


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Oct 17, 2018 4:00 am 
Offline
User avatar

Joined: Tue May 15, 2012 10:11 am
Posts: 8
Image

My sorta slab allocator running for the first time in my old kernel project.
When my new kernel is far enough I will use it there to manage my kernel objects :).
I don't have a regular heap atm, the slab just gets a bunch of pages from the physical manager (which just pops them from a stack) and maps them to virtual memory.
I want to avoid having "regular" heap allocations as much as possible (at best not have a kernel heap at all)

EDIT:
The allocator is now able to run on top of my new kernel (microsphere) which had a lot memory-management related stuff added the past days and today.
Image

_________________
Current project: https://github.com/reinixOS/microsphere/


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri Nov 09, 2018 3:51 pm 
Offline
Member
Member
User avatar

Joined: Sat Nov 22, 2014 6:33 pm
Posts: 934
Location: USA
After a side-track project, I came back and now have a hard drive image that will boot either UEFI or Legacy BIOS.

Image

I was working on this and ran in to a few issues with the actual file image. I was using multiple (custom) utilities to modify the image file and was getting irregular results. Therefore I decided to take a side-track and create a single utility to do what I needed. Once I got the utility to work as I needed, I came back to this dual boot image.

The .zip included in the first URL above contains two images, a floppy image (bootable legacy only) with the LeanFS, and a 10Meg hard drive bootable either UEFI or Legacy. Instructions for QEMU and the UEFI BIOS is included.

New code in my UEFI and Legacy boot/loader code was necessary to allow for each boot technique. I went to update the UEFI source at github but they no longer support older versions of Firefox (WinXP). I will have to boot to a newer version of Windows to simply update it. ( It wasn't broke, why did they fix it!! )

Thanks to all of you whom participate in this hobby of ours.

Ben
- http://www.fysnet.net/osdesign_book_series.htm


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri Nov 09, 2018 4:17 pm 
Offline
Member
Member

Joined: Tue Mar 04, 2014 5:27 am
Posts: 1108
BenLunt wrote:
After a side-track project, I came back and now have a hard drive image that will boot either UEFI or Legacy BIOS.

Cool!

BenLunt wrote:
I went to update the UEFI source at github but they no longer support older versions of Firefox (WinXP). I will have to boot to a newer version of Windows to simply update it. ( It wasn't broke, why did they fix it!! )

Or you could probably learn a few git commands (e.g. push) to update from command line.


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Fri Nov 09, 2018 5:14 pm 
Offline
Member
Member
User avatar

Joined: Sat Nov 22, 2014 6:33 pm
Posts: 934
Location: USA
Hi Alex,

alexfru wrote:
Or you could probably learn a few git commands (e.g. push) to update from command line.

Ya, that too. I will have to go look and see what it takes.

Thanks,
Ben


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sun Nov 11, 2018 8:40 am 
Offline
Member
Member
User avatar

Joined: Sun Jan 17, 2016 7:57 am
Posts: 51
File management.
Image


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Nov 14, 2018 11:13 am 
Offline
Member
Member
User avatar

Joined: Wed Aug 17, 2016 4:55 am
Posts: 251
Now all it needs is an icon grid view :​P

For the record, Linux does the copying filenames as text stuff, but it uses the full path, may want to look into that instead (pretty convenient when something wants a file since I can copy the file with Ctrl+C then paste the name in the file dialog with Ctrl+V - my mouse isn't in great shape and some programs are a bit fincky with drag'n'drop and I'm more of a keyboard shortcut user anyway).


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat Nov 17, 2018 11:40 am 
Offline
Member
Member

Joined: Fri Jun 02, 2017 3:01 pm
Posts: 35
Now i can load dynamically linked libraries and load executables!

Image

_________________
https://github.com/ilmmatias/palladium


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sat Nov 17, 2018 2:29 pm 
Offline
Member
Member
User avatar

Joined: Sun Jan 17, 2016 7:57 am
Posts: 51
Sik wrote:
Now all it needs is an icon grid view :​P


Image

Ideally I'd have more interesting file icons at this point. Oh well :)

Sik wrote:
For the record, Linux does the copying filenames as text stuff, but it uses the full path, may want to look into that instead (pretty convenient when something wants a file since I can copy the file with Ctrl+C then paste the name in the file dialog with Ctrl+V - my mouse isn't in great shape and some programs are a bit fincky with drag'n'drop and I'm more of a keyboard shortcut user anyway).


I suppose it could be a user-configurable setting. I'll have to think about it.


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Sun Nov 18, 2018 4:47 am 
Offline
Member
Member

Joined: Wed Mar 30, 2011 12:31 am
Posts: 676
nakst inspired me to clean up my rebuilt file manager (ported from the older Python implementation), finishing up the icon view and adding selection and double-click navigation.

Image

... and pasting files into a text editor:

Image

... as well as a new button widget implementation with a new design:

Image

_________________
toaruos on github | toaruos.org | gitlab | twitter | bim - a text editor


Top
 Profile  
 
 Post subject: Re: What does your OS look like? (Screen Shots..)
PostPosted: Wed Dec 05, 2018 8:08 am 
Offline

Joined: Sat Nov 24, 2018 1:45 pm
Posts: 3
Image

YaxOS in action.

_________________
Kah toh-dye!
Code:
rm -rf ~/stuff/osdev


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3898 posts ]  Go to page Previous  1 ... 220, 221, 222, 223, 224, 225, 226 ... 260  Next

All times are UTC - 6 hours


Who is online

Users browsing this forum: Bing [Bot], SemrushBot [Bot] and 62 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group