#morphos

2025-06-14

iGame is a MUI-based frontend for launching WHDLoad titles. George 'walkero' Sokianos has again made some changes to the open source program and released version 2.6.0 for AmigaOS 3/4 and MorphOS:

amiga-news.de/en/news/AN-2025-

#Amiga #WHDLoad #AmigaOS3 #AmigaOS4 #MorphOS

Santiago Lema :amiga:santi@go.lema.org
2025-06-10
Yesterday I installing Terminus font (version from nerd fonts) on #MorphOS hoping to get that same nice crisp pixel perfect look I use on Haiku and XFCE machines at sizes like 12/14/16. Sadly I couldn’t find a way to disable font smoothing.

Is it even possible ?
Santiago Lema :amiga:santi@go.lema.org
2025-06-09
Just saw theres' a build of #Amidon in #MorphOs (in the EasyInstall app). So hello from my Mini G4 running MorphOS!
Devlin :farfetchd:devlin@topspicy.social
2025-06-09

It's #Introduction time!
I'm Devlin (they/them). I'm a volunteer Community Manager for various Discord servers. I also make games for PC.

I like classic computers, especially the Amstrad CPC, and run a Discord server for it at discord.gg/4QZqfCr

My games are available on
devlin.itch.io/

If you like what I do and would like to donate, you can find my Ko-Fi here -
ko-fi.com/magicbane

#retro #amstrad #morphos #amiga #retrogaming #gamedev

2025-06-07

In 2003 I met with RJ Mical, the architect of AmigaOS user interface Intuition. I showed off our #MorphOS operating system, which is largely based on AmigaOS concepts and designs. It's not often that you get to meet one of your childhood heroes!

Image from Finnish Amiga Users Group magazine #44 (in finnish): https://saku.bbs.fi/lehti/online/44/ajankohtaiset/rjmical.html

Photographs by Janne Sirén ja Joanna Kurki.Image from Finnish Amiga Users Group magazine #44 (in finnish): https://saku.bbs.fi/lehti/online/44/ajankohtaiset/rjmical.html

Photographs by Janne Sirén ja Joanna Kurki.
Devlin :farfetchd:devlin@topspicy.social
2025-06-04

The MorphOS discord has officially gone public! come and join the MorphOS community at:

discord.com/invite/MFu9R6qBmA

#morphos #amiga

Devlin :farfetchd:devlin@topspicy.social
2025-06-03

@guffo Responding from Wayfarer on similar hardware! Good lord, you weren't wrong about it struggling. #morphos #amiga #powerpc

I’m Tired And Everything Hurtsguffo@topspicy.social
2025-06-03

Tooting from Wayfarer on MorphOS 3.19 on a G4 Mac mini. Everything's lovely but hoo boy is it struggling with the web interface.

The G4 is doing its best, damnit.

#amiga #morphos #powerpc

rk: it’s hyphen-minus actuallyrk@well.com
2025-06-01

From my nephew

#MorphOS #Amiga

A text message reading “do you know about MorphOS?”
2025-05-31

A new little preview video of the Mirari PowerPC board demonstrating the forthcoming new MorphOS 3.20 Beta:

youtube.com/watch?v=w9BTMQNfKX

#Amiga #MorphOS #AmigaOS4 #PowerPC #Mirari

2025-05-30

iGame is a MUI based frontend for launching WHDLoad titles for AmigaOS 3/4 and MorphOS. George 'walkero' Sokianos has again contributed some changes to version 2.5.1:

amiga-news.de/en/news/AN-2025-

#Amiga #AmigaOS3 #AmigaOS4 #MorphOS #WHDLOAD

2025-05-28

Preview video:

"Hans Kloss - Agent J-23" is a fan project based on the Polish platform game "Hans Kloss", which was released in 1992/93 for Atari home computers and the C64.

The new edition is to be released for MorphOS, Windows and Linux.

amiga-news.de/en/news/AN-2025-

#Games #MorphOS #Windows #Linux #platformer

Rob Whiting 📓whitingx@mastodon.cloud
2025-05-28

Mirari Board - A Next-Gen Mainboard Designed for #AmigaOS4 and #MorphOS.

mirari.vitasys.nl/

N-gated Hacker Newsngate
2025-05-25

🎉 Behold the "next-gen" mainboard that's 30 years late to the party, designed for the ghost towns of and MorphOS! 🎈 It's like resurrecting a dinosaur and assuring everyone it's the future of transportation. 🦖💾
mirari.vitasys.nl/

Hacker Newsh4ckernews
2025-05-25

The Next-Gen Mainboard Designed with AmigaOS4 and MorphOS in Mind

mirari.vitasys.nl/

2025-05-23

Frank Mariak got our operating system #MorphOS running on #Mirari T1042 board in no time. My home is so full of #PowerPC gear already I doubt I'll get one of these boards.

MorphOS running on Mirari T1042 board. Picture (C) Frank Mariak.MorphOS running on Mirari T1042 board. Picture (C) Frank Mariak.
2025-05-23

Fantastic news: the new PPC "Mirari" motherboard boots MorphOS successfully!!! :)

amiga-news.de/en/news/AN-2025-

#PPC #hardware #Mirari #MorphOS

2025-05-22

I found and fixed yet another use after free bug in pdksh. This bug is likely about 30 years old or so.

- c_eval (shell "eval" command) creates a new "strict source" "s" from current env ATEMP: github.com/Orc/pdksh/blob/1310

- c_eval passes the created source to "shell" function:
github.com/Orc/pdksh/blob/1310

- "shell" calls "compile" function: github.com/Orc/pdksh/blob/1310

- "compile" function assigns the global "source" pointer to the passed source: github.com/Orc/pdksh/blob/1310

At some point (I didn't bother tracing exactly where and in what circumstances - certain parts of gmp-6.3.0 configure script trigger it, at least on our platform) the ATEMP associated with the "env" gets released via call to "reclaim", but the "source" pointer will continue to point to the already released memory. This leads to classic Use After Free condition and all kinds of havoc and eventually a crash.

The fix is easy enough: Save and restore the original source pointer in c_eval:

--- pdksh-5.2.14/c_sh.c 1999-07-13 19:54:44.000000000 +0300
+++ pdksh-5.2.14-fixed/c_sh.c 2025-05-20 23:08:41.162128448 +0300
@@ -423,6 +423,8 @@
char **wp;
{
register struct source *s;
+ struct source *sold;
+ int ret;

if (ksh_getopt(wp, &builtin_opt, null) == '?')
return 1;
@@ -456,7 +458,10 @@
exstat = subst_exstat;
}

- return shell(s, FALSE);
+ sold = source;
+ ret = shell(s, FALSE);
+ source = sold;
+ return ret;
}

int

#bugstories #development #morphos

gmp 6.3.0 configure script running on fixed pdksh on MorphOS platform.

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst