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.
User avatar
phredreeck
Member
Member
Posts: 312
Joined: Mon Jun 15, 2009 10:01 am
Location: France

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

Post by phredreeck »

Wow. I think ToaruOS is, with Visopsys and Solar_OS, one of the best hobby OSes I have seen.
@sortie: I like the look'n'feel of your windows! It reminds me some old Hydrogen OS' GUI prototypes! :)
User avatar
abcdef4bfd
Member
Member
Posts: 492
Joined: Fri Apr 03, 2015 9:41 am

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

Post by abcdef4bfd »

dseller wrote:Haven't been posting a lot lately, but oh well. Here's the current state of ttOS, now with graphics mode :).
snapshot.png
I love that interface.
User avatar
abcdef4bfd
Member
Member
Posts: 492
Joined: Fri Apr 03, 2015 9:41 am

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

Post by abcdef4bfd »

sortie wrote:I used a couple of hours to hack up a basic terminal emulator for my gui prototype thing now that I have proper pseudoterminals.

Image

It's not quite on par yet with that other hobbyist system whose desktop environment I ported, but it's getting there.
This. Is. Awesome. Your OS is good in both graphics and internals. Your OS and ToaruOS are the BEST hobby OSes ever made.
User avatar
Agola
Member
Member
Posts: 155
Joined: Sun Nov 20, 2016 7:26 am
Location: Somewhere

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

Post by Agola »

Just ported binutils and gcc, finally self hosting :) Except arg passing is crazy buggy :|

Image
Last edited by Agola on Sat Jan 21, 2017 8:42 am, edited 1 time in total.
Keyboard not found!

Press F1 to run setup.
Press F2 to continue.
User avatar
sortie
Member
Member
Posts: 931
Joined: Wed Mar 21, 2012 3:01 pm
Libera.chat IRC: sortie

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

Post by sortie »

Woot!
User avatar
Agola
Member
Member
Posts: 155
Joined: Sun Nov 20, 2016 7:26 am
Location: Somewhere

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

Post by Agola »

sortie wrote:Woot!
I couldn't get what did you mean, sorry :(

Also your window design and system internals are really cool, just wanted to say :|
Keyboard not found!

Press F1 to run setup.
Press F2 to continue.
User avatar
sortie
Member
Member
Posts: 931
Joined: Wed Mar 21, 2012 3:01 pm
Libera.chat IRC: sortie

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

Post by sortie »

Agola wrote:
sortie wrote:Woot!
I couldn't get what did you mean, sorry :(
I'm just making an excited sound to say that I think you did something really cool.
Agola wrote: Also your window design and system internals are really cool, just wanted to say :|
[/quote]
Thanks!
User avatar
abcdef4bfd
Member
Member
Posts: 492
Joined: Fri Apr 03, 2015 9:41 am

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

Post by abcdef4bfd »

Agola wrote:Just ported binutils and gcc, finally self hosting :) Except arg passing is crazy buggy :|

Image
A. W. E. S. O. M. E. Self-hosting, woohoo! :)
User avatar
Agola
Member
Member
Posts: 155
Joined: Sun Nov 20, 2016 7:26 am
Location: Somewhere

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

Post by Agola »

osdeverr wrote:
Agola wrote:Just ported binutils and gcc, finally self hosting :) Except arg passing is crazy buggy :|

Image
A. W. E. S. O. M. E. Self-hosting, woohoo! :)
Is it self-hosting really? Just afraid I used "wrong term" (I hope I didn't #-o)

GCC and Binutils works on Agola, they are both configured with --host=i686-agola --target=i686-agola, can compile code and link (except a small linker bug)

So am I self hosting really?
Keyboard not found!

Press F1 to run setup.
Press F2 to continue.
User avatar
abcdef4bfd
Member
Member
Posts: 492
Joined: Fri Apr 03, 2015 9:41 am

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

Post by abcdef4bfd »

Agola wrote:
osdeverr wrote:
Agola wrote:Just ported binutils and gcc, finally self hosting :) Except arg passing is crazy buggy :|

Image
A. W. E. S. O. M. E. Self-hosting, woohoo! :)
Is it self-hosting really? Just afraid I used "wrong term" (I hope I didn't #-o)

GCC and Binutils works on Agola, they are both configured with --host=i686-agola --target=i686-agola, can compile code and link (except a small linker bug)

So am I self hosting really?
If you can compile your OS under itself then you are.
User avatar
Agola
Member
Member
Posts: 155
Joined: Sun Nov 20, 2016 7:26 am
Location: Somewhere

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

Post by Agola »

Yay! Then I'm self hosting. Got so happy :D I just compiled /test.c under my OS

Code: Select all

#include <stdio.h>

int main(int argc, char** argv)
{
  printf("Simple test...\n");
  printf("Argc is: %d (Should be 2)\n", argc);
  printf("Argv[0] is : %s, Argv[1] is: %s, Argv[2] is: %s\n", argv[0], argv[1], argv[2]);
  printf("Program will end, after calculating abs (999 - 1000) : %d", abs(999 - 1000));
  
  return 0;
}
Keyboard not found!

Press F1 to run setup.
Press F2 to continue.
User avatar
crunch
Member
Member
Posts: 81
Joined: Wed Aug 31, 2016 9:53 pm
Libera.chat IRC: crunch
Location: San Diego, CA

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

Post by crunch »

Lots of inspiration in the last couple posts... I gotta get cranking on my project again. I've been porting everything over to x86_64
User avatar
abcdef4bfd
Member
Member
Posts: 492
Joined: Fri Apr 03, 2015 9:41 am

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

Post by abcdef4bfd »

Agola wrote:Yay! Then I'm self hosting. Got so happy :D I just compiled /test.c under my OS

Code: Select all

#include <stdio.h>

int main(int argc, char** argv)
{
  printf("Simple test...\n");
  printf("Argc is: %d (Should be 2)\n", argc);
  printf("Argv[0] is : %s, Argv[1] is: %s, Argv[2] is: %s\n", argv[0], argv[1], argv[2]);
  printf("Program will end, after calculating abs (999 - 1000) : %d", abs(999 - 1000));
  
  return 0;
}
I want to wake up one day and realise that I ported GCC and Binutils last night :roll:
User avatar
sortie
Member
Member
Posts: 931
Joined: Wed Mar 21, 2012 3:01 pm
Libera.chat IRC: sortie

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

Post by sortie »

Image

I added a lot more features to my user-space terminal emulator and show off some of my more interesting recent developments. Look closely for sneak previews of what's coming up.
User avatar
Agola
Member
Member
Posts: 155
Joined: Sun Nov 20, 2016 7:26 am
Location: Somewhere

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

Post by Agola »

sortie wrote:Image

I added a lot more features to my user-space terminal emulator and show off some of my more interesting recent developments. Look closely for sneak previews of what's coming up.
That is (Crazily Cool!)™ :D
Last edited by Agola on Sat Jan 21, 2017 4:03 pm, edited 3 times in total.
Keyboard not found!

Press F1 to run setup.
Press F2 to continue.
Post Reply