suggestions welcome
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    bbrv
    Posts: 750 from 2003/2/14
    From: Earth
    We have been spending most of our time lately supporting the LimePC release. The LimePC uses the Freescale 5121e SoC. The 5121e features a 200MHz co-processor (AXE engine) and the MBX Lite core for graphics. The CPU is a 400MHz e300 PowerPC. Hopefully, millions of LimePC units will be produced, but at this point the number is still less than 100,000.

    Currently, our software development is focused on GNU Linux, but we seek more OS options. This is one reason we have decided to support AROS *and* MorphOS once both operating systems are released for the 5200B based EFIKA. We would be pleased to support OS4 too if legal situation was more clear. In any case, a stronger MorphOS community and a stronger AROS community can't be bad for OS4 or Amiga Application Developers and Users. A rising tide lifts all boats...

    If you have some thoughts on how we might best restore Amiga-like OS environments to the mass market, please do not hesitate to post the information here or send us an email. Thanks!

    Best regards,
    R&B :-)
  • »15.05.08 - 09:38
    Profile Visit Website
  • rms
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    rms
    Posts: 599 from 2004/11/27
    Hi all,

    does anyone know how to setup, that when double-clicking on an URL in an e-mail in YAM, Sputnik opens and loads the URL?

    For IBrowse there is a arexx script (GoToURL.yam) but it seems not to work with Sputnik.

    Any suggestions?

    Thanks and best regards

    Christoph
  • »20.05.08 - 06:15
    Profile Visit Website
  • Paladin of the Pegasos
    Paladin of the Pegasos
    jcmarcos
    Posts: 1178 from 2003/3/13
    From: Pinto, Madrid ...
    Quote:

    Cego wrote:

    yeah right and 1 billion drivers to support...


    No, this hypotetical MorphOS x86 would support only certain devices, like every small operating system. It's only the motherboard that's much easier to find and cheaper. In theory, you could pull out the Pegasos motherboard, put in an x86 based one, and plug back every device you had working.

    What a load of crap I'm saying!
  • »20.05.08 - 07:54
    Profile
  • Order of the Butterfly
    Order of the Butterfly
    diezi7
    Posts: 167 from 2005/7/26
    From: Madrid
    Quote:

    yeah right and 1 billion drivers to support..


    Well, you have AROS...I'd say it has not such
    drivers and it works !

    You may remember Apple's case, x86 hardware running
    both MacOSX and Win. What's wrong?. But we talk
    about a billions company.

    Being present on a mass market implies MONEY and enormous support, if that's what genesi seems to plan
    then the effort will have to be Generous..

    I would bet Genesi is not up to the task of entering the mass market dimension. They need to enter that market (market has no legs) or delivery such attractive product that attracts consumers. But if they had a good investor....

    Mass market users are not really very interested in OS depths and
    tech details, that has been demostrated over the years.

    Today it's hard to compete with big hardware companies, so why not use their products adapting your
    software?? (X86 has an unending list of available OS)

    Oh damm god, you are a small hardware company :-( and that is not business for you.

    Summary and deceit: It could be cool to hear your neighborg uses MorphOS and that he/she bought his computer in a local shop. :-)

    JC
    Quote:

    No, this hypotetical MorphOS x86 would support only certain devices, like every small operating system. It's only the motherboard that's much easier to find and cheaper. In theory, you could pull out the Pegasos motherboard, put in an x86 based one, and plug back every device you had working.


    Right, it would not need extensive cab archives and so on. :-D
    Pegasos HAL lets you to use standard peripherals, they could run with an x86 board.
    Appart from motherboard, proccesors are very easy to find and cheaper too.
    PowerMac G4 MDD 1,25 dual (Registered)
    Pegasos II G4 (not working)
    Powerbook G4 1.0 15"
    -=_=_=_=_=_=_=_=_=_=_=_=_=_=_=_=_=_=_=
    http://amigalandia.blogspot.com.es/
  • »20.05.08 - 20:41
    Profile Visit Website
  • Paladin of the Pegasos
    Paladin of the Pegasos
    ThePlayer
    Posts: 1068 from 2003/3/24
    From: Hamburg/Germany
    Last week i talked to a friend about the MediaCenterPCs to Play Videos, MP3, watch and record TV, DVB-C-S-T, etc...
    And he told me that he read in the CT Magazine(a well knowen one in Germany) all solutions under 500 Euro are crap
    and actually MediaCenterPCs above 700 Euro lacks some importent featuers. So a good and atractive Product would
    be a MediaPC around 500 Euro that could do all the things mentioned above plus HD in 1080p and Internet.
    I think the Pegasos/Efika8610 would be a good Hardware and with running the MediaCenter Software from Geit on top of MOS on this Machine.

    Remember Amiga was the first Multimedia PC on this Planet, so why don't start with the best and cheapest solution in MediaCenterPCs!?!
    PowerMac G5 Quad 2.5 running UWQHD Resolution
  • »20.05.08 - 21:43
    Profile
  • mk
  • Butterfly
    Butterfly
    mk
    Posts: 72 from 2004/5/24
    From: Germany Gera
    @rms

    1. for URL:

    YAM - CONFIG - SCRIPTS - DOUBLECLICK URL:
    AmigaDOS
    run >NIL: rx SPUTNIK_URL.rexx url %p

    SYS:S/SPUTNIK_URL.rexx
    --- begin ---
    /*
    ** $VER: Sputnik-Script url 1.0 (21.04.2008)
    */
    SPUTNIKPATH = '`sys:path/sputnik/sputnik`'
    parse arg mode'"'url'"'
    options results
    IF ~show('P','SPUTNIK.1') then address command 'WBRun 'SPUTNIKPATH
    do
    IF ~show('P','SPUTNIK.1') then address command 'waitforport SPUTNIK.1'
    end
    address 'SPUTNIK.1' 'OPENURL URL 'url
    --- end ---

    2. for html files:

    YAM - CONFIG - MIME - text/html - Program:
    run >NIL: rx SPUTNIK_LOCAL.rexx url %s

    SYS:S/SPUTNIK_LOCAL.rexx
    --- begin ---
    /*
    ** $VER: Sputnik-Script Localhost 1.0 (21.04.2008)
    */
    SPUTNIKPATH = '`sys:path/sputnik/sputnik`'
    parse arg mode'"'url'"'
    options results
    IF ~show('P','SPUTNIK.1') then address command 'WBRun 'SPUTNIKPATH
    do
    IF ~show('P','SPUTNIK.1') then address command 'waitforport SPUTNIK.1'
    end
    address 'SPUTNIK.1' 'OPENURL file://localhost/'url
    --- end ---

    Hints:
    1) ...mode'"'url'"'
    is ...mode' and " and 'url' and " and '
    2) adjust SPUTNIKPATH

    [ Edited by mk on 2008/5/23 7:05 ]
  • »21.05.08 - 10:28
    Profile
  • Order of the Butterfly
    Order of the Butterfly
    Wishmaster
    Posts: 342 from 2003/6/29
    Quote:

    Hello,

    I think java is a good point for application development. I'm waiting an ide like eclipse and java supporting, with that things, i'll made some usefull stuff !

    A java developper in stand by mode....


    Why not simply use C/C++ meanwhile.
    Isn't Java a bit too slow anyways?
    Pegasos PPC
  • »21.05.08 - 14:22
    Profile
  • Caterpillar
    Caterpillar
    Amilord
    Posts: 22 from 2006/8/29
    From: France
    Thanks for stiil showing interest in this Amiga OS like environnement :-)

    I think you can really make something big if you are able to release (for an handled device) something with some kind of good graphics acceleration and if we speak about morphOS, you NEED to have Java (like it or not it's a fact), an up to date Flash capability, of course a state of the art Web browser (without this one you'll go nowhere), an easy to use and shiny Mail client, a great media player (something really optimized for the hardware and MOS) AND a professsional SDK WITH a good IDE (something like Visual Studio is the must) the SDK / IDE HAS to be available on MOS, Windows and MacOS / Linux

    All these things will make you able to compete (and survive)
  • »21.05.08 - 18:36
    Profile
  • Order of the Butterfly
    Order of the Butterfly
    luky-amiga
    Posts: 245 from 2003/5/1
    From: Czech Republic
    Java isn't too slow - new versions, Java HotSpot techology, etc.
    I'm using Java for 1) realtime computation and visualization and 2) my EEG files viewer is a lot faster than C++ one :-)

    Java is most powerful language from my point of view
    - you can write ONE application with GUI and it just runs on Windows/x86, Linux/x86, Solaris/x86, MacOS X, Pegasos + Linux/PPC too :-) ...

    And NetBeans IDE really rulez!!! BTW software project from our Charles University ;-)

    But I don't expect usable Java in next 3 years on MorphOS :-( :-( :-( it's too difficult to create port. What happened to Genesi sponsored Java-port?
    If there would be usable port of Java on MorphOS, it would automatically mean porting great NetBeans development IDE and millions of applications! So MorphOS Java port should not be underestimated, it's goldmine full of applications...

    [ Edited by luky-amiga on 2008/5/21 19:05 ]
  • »21.05.08 - 19:04
    Profile Visit Website
  • rms
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    rms
    Posts: 599 from 2004/11/27
    @ mk

    Thanks very much for your help, I installed, tested and it seems to work fine :-)

    Regards

    Christoph
  • »23.05.08 - 05:53
    Profile Visit Website
  • Just looking around
    Posts: 8 from 2004/1/7
    From: Saint Amand Le...
    I'm agree that if a java port is made, a lot of application will be ported to Morphos (like openoffice) and a lot of gestion application !
    I'm using c++ for starting my dev but it's still difficult to make a complete application with bdd (via sql lite).

    I think java would be a leader for making modern applications on our computer !!
    Pegasos II G4 @ 1 ghz Radeon 7000
  • »25.05.08 - 06:21
    Profile
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    Crumb
    Posts: 730 from 2003/2/24
    From: aGaS & CUAZ Al...
    Quote:


    luky-amiga wrote:
    Java isn't too slow - new versions, Java HotSpot techology, etc.
    I'm using Java for 1) realtime computation and visualization and 2) my EEG files viewer is a lot faster than C++ one :-)



    perhaps that C++ code/algorithm chosen is not well made or the compiler used isn't very good.

    Quote:


    Java is most powerful language from my point of view
    - you can write ONE application with GUI and it just runs on Windows/x86, Linux/x86, Solaris/x86, MacOS X, Pegasos + Linux/PPC too :-) ...



    That's theory. In practice Java VM are slightly incompatible and you have to recompile/rewrite stuff for each Java VM. E.g.: AIX JVM isn't as compatible as it should with Sun's one.

    You could say the same about ".net" but I find these solutions slower than native code, regardless of ".net" fanatics telling me that it's as fast as native code. It isn't: take ATI Radeon preferences and watch it crawl on a 1.4Ghz Athlon with 2GB of ram and WinXP.

    Quote:


    And NetBeans IDE really rulez!!! BTW software project from our Charles University ;-)

    But I don't expect usable Java in next 3 years on MorphOS :-( :-( :-( it's too difficult to create port. What happened to Genesi sponsored Java-port?
    If there would be usable port of Java on MorphOS, it would automatically mean porting great NetBeans development IDE and millions of applications! So MorphOS Java port should not be underestimated, it's goldmine full of applications...

    [ Edited by luky-amiga on 2008/5/21 19:05 ]


    I think a Java port would be nice but I would prefer other apps like Firefox. I would prefer MorphOS running on x86 even more (even if it wasn't binary compatible with PPC/m68k... but I could live with a big endian x86 MorphOS).
  • »21.06.08 - 18:07
    Profile Visit Website
  • Yokemate of Keyboards
    Yokemate of Keyboards
    takemehomegrandma
    Posts: 2720 from 2003/2/24
    @Zylesea

    Quote:


    Zylesea wrote:
    Put the Efika into a small and stylish case like the Asus EEE desktop pc (or Nintendo Wee), bundle it with MOS 2.0 and sell it to similar markets like Asus does with the eee.
    MOS 2.0 on the Efika is good enough for a lot of things and gives the impression of blazing fast speed. Efika with MOS *feels* much faster than the Asus eee.
    Of course one of the things why the Eee scores, is the balanced bundle of software.
    For the market of higher power devices (8610) I still see it like outlined in some mails some time ago.


    Put the ThinPC PCB inside the "Lime Keyboard" case...

    2603053373_0424f96061.jpg

    and you'd have a...

    oqjb41.jpg

    ...Morpher 1200! ;-) Or maybe it would be a "Morpher 600" since it lacks the numeric keyboard? (Or put the PCB inside a cool looking 1280x720 monitor, and you'd have an "iMorpher". ;-))

    Of course the Windows logos on the Windows keys would have to be replaced with butteflies, and the green lime (also a LED?) on top with a blue butterfly! :-P ;-)

    Then phone around to collect distribution rights in order to create a new "super bundle" consisting of *all major* "old timer" SW, titles that you know were popular and big in the days, like "Deluxe Paint" and whatever, names that old timers that has now moved on will recognize. Office apps, graphic apps, sound apps, Internet apps, a few RTG games, etc. SW that is still being owned by someone, although abandoned. Cheap, in other words. The distribution rights should include access and the rights to do whatever mods (if any) in order to make it run flawlessly on MorphOS 2.0 without OCS/ECS/AGA.

    When everything is set up - buy one full-page ad in those computer mags which is read by advanced computer users, people that once were Amiga users, people that sure as hell still will remember and recognize the titles in the super bundle. There is at least one of those mags in every western country. They reach people that have never heard about "the Morpher" or MorphOS, but sure as hell knows the titles in the "super bundle". Those titles will be the key - any references to Am*ga should not only be avoided but *banned*. Create a lot of screen shots and even videos (on utube) showing the environment running, the "familiar" desktop and features and functionality but in completely new clothing. A modern OS with new features mixed with those old, familiar retro applications that some people really loved back in the days.

    Back in the "Amiga's decade" (1985-1995) many of those people were still young, some of them were students, some of them were teenagers, some of them were even children by legal definition. They had limited money, and things were expensive, so they really came to love what they were able to get a hold of, because they were (and are) hard core computer enthusiasts. Today they work as computer engineers or programmers, and have a completely different financial situation. When they buy a PC (which they do at least every other year) they spend at least $2000, they have a PS1, PS2 and a PS3 and possibly an xbox 360 as well. They will always have a small fund available for cool technology. When they see this offer, a bell will ring somewhere deep down in their brains nostalgia center (Nostalgius Urgeus), and they will remember the good old days, the fun, the poking, the learning, the friends, the magazines, the completely different times and general atmosphere about "home computers" when not everything was centered around Windows Vista and service packs. At $299, a lot of those people would buy it out of pure curiosity. Most of them would definitely love what they see. Eventually, many of them would feel a little constrained by the "Morpher600/1200" specs, especially those wanting to write or port their own Morpher programs. That's when they start looking for the 8610/8640 based "Morpher 4000", a big box computer with real expansion slots and powerful enough for most things! ;-)
    MorphOS is Amiga done right! :-)
    MorphOS NG will be AROS done right! :-)
  • »23.06.08 - 14:03
    Profile
  • Order of the Butterfly
    Order of the Butterfly
    Genesi
    Posts: 239 from 2005/1/7
    From: Earth
    We will be developing an MPC8610 based laptop. We will use an ATI graphic chip. It just took time to build support for the product. You cannot do something like this alone. We will make a formal announcement in July. Thanks for hanging in there.

    R&B :-)
  • »25.06.08 - 00:56
    Profile Visit Website
  • Yokemate of Keyboards
    Yokemate of Keyboards
    Zylesea
    Posts: 2053 from 2003/6/4
    @ Genesi

    Great, but why the additional ATI gfx chip? Anyway, good thing (to say the least) :-). And I guess this is something the MorphOS-Team very likely will support.
    --
    http://via.bckrs.de

    Whenever you're sad just remember the world is 4.543 billion years old and you somehow managed to exist at the same time as David Bowie.
    ...and Matthias , my friend - RIP
  • »25.06.08 - 01:13
    Profile Visit Website
  • Yokemate of Keyboards
    Yokemate of Keyboards
    Andreas_Wolf
    Posts: 12077 from 2003/5/22
    From: Germany
    > why the additional ATI gfx chip?

    For hardware 3D, I guess.
  • »25.06.08 - 03:32
    Profile
  • Order of the Butterfly
    Order of the Butterfly
    luky-amiga
    Posts: 245 from 2003/5/1
    From: Czech Republic
    Quote:

    We will be developing an MPC8610 based laptop. We will use an ATI graphic chip.


    This is AWESOME news!

    In fact, I wanted to buy second-hand Apple iBook G4...
    I hope for portable MorphOS someday... but 8610 laptop is much better solution!

    It's a pity that I don't have millions of dollars, I would like to support and speed up your HW efforts ;-)
    and MorphOS Team of course...
  • »25.06.08 - 08:09
    Profile Visit Website
  • Order of the Butterfly
    Order of the Butterfly
    luky-amiga
    Posts: 245 from 2003/5/1
    From: Czech Republic
    Right now, I'm disappointed that Java is VERY MEMORY HUNGRY. It can't open >10MB file into the text area without wasting 100MB RAM and more! It's known problem, but it seems that Sun will not fix it, it seems like a feature :-( Tried Java 7 - still the same... If I use two text areas, I'm limited to work with 5 MB text file - it's a shame! Java can't fit to small RAM = EFIKA 5200B.
  • »25.06.08 - 08:23
    Profile Visit Website
  • Yokemate of Keyboards
    Yokemate of Keyboards
    takemehomegrandma
    Posts: 2720 from 2003/2/24
    @Genesi

    WOW! :-o :-o :-o

    It's extremely good news to hear this intention of yours! :-D

    Will you use an ATI/AMD southbridge chip as well, or will you go for separate pci-e controllers for storage, usb, and ethernet, etc?

    I'm crossing my fingers until the formal announcement (not to say the product arrival ;-)), and I'm looking forward to read more about the specs!

    :-)
    MorphOS is Amiga done right! :-)
    MorphOS NG will be AROS done right! :-)
  • »25.06.08 - 10:31
    Profile
  • Order of the Butterfly
    Order of the Butterfly
    ironfist
    Posts: 254 from 2004/4/22
    From: Pegasos.org
    Very good news, Bill and Raquel!

    thumbsup.gif
  • »25.06.08 - 17:10
    Profile Visit Website
  • Acolyte of the Butterfly
    Acolyte of the Butterfly
    wolfe
    Posts: 118 from 2003/8/8
    From: Somewhere Some...
    Quote:


    Genesi wrote:
    We will be developing an MPC8610 based laptop. We will use an ATI graphic chip. It just took time to build support for the product. You cannot do something like this alone. We will make a formal announcement in July. Thanks for hanging in there.

    R&B :-)


    Well, its almost July . . . :-)
  • »27.06.08 - 03:06
    Profile
  • Order of the Butterfly
    Order of the Butterfly
    Posts: 236 from 2003/7/28
    From: Canada
    @BBRV,

    Please develop also a Pegasos 3 desktop board :)
    A4000/060/PPC-200MHz, A4000T/060/PPC-233MHz, CD32, MicroA1, Pegasos 2 G4, AMD Phenom Quad Core 2.5GHz, MacMini 1.5GHz/64MB VRam...mwwmwahhh :)
  • »28.06.08 - 19:01
    Profile Visit Website
  • Cocoon
    Cocoon
    Snuffy
    Posts: 58 from 2005/12/4
    From: Michigan USA
    Quote:

    We would be pleased to support OS4 too if legal situation was more clear.

    Staytuned, it's coming up in November.

    Genesi wrote:
    We will be developing an MPC8610 based laptop... R&B :-)

    Boing! So what's happened so far after three months? I would give up OS4.1 for one of your laptops!
  • »28.08.08 - 19:35
    Profile
  • Order of the Butterfly
    Order of the Butterfly
    Genesi
    Posts: 239 from 2005/1/7
    From: Earth
    So far, only this:

    http://en.opensuse.org/MPC8610

    We have been demonstrating this with the Flash plugin beta at PowerDev meetings.

    R&B :-)
  • »28.08.08 - 20:35
    Profile Visit Website
  • Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    Jambalah
    Posts: 820 from 2008/3/30
    From: Roma, Italy
    @BBRV
    Very interesting...!
    But I would join to HammerD request, too!!! :-)
    Pegasos II 1 ghz
    Powermac G4 Quicksilver with Sonnet Encore 1.8 ghz
    Powermac G4 MDD single 1.25 ghz, silenced for ears health...
    Powermac G5 dual 2.7 ghz I'll be back...
    Powermac G5 dual 2.0 ghz
    Powerbook G4 1.67 ghz 17
  • »28.08.08 - 20:48
    Profile
  • Butterfly
    Butterfly
    SixK
    Posts: 72 from 2004/11/16
    Quote:

    If you have some thoughts on how we might best restore Amiga-like OS environments to the mass market, please do not hesitate to post the information here or send us an email. Thanks!


    @BBRV, in actual state of Morphos you can't go to mass market...
    Look at what an eeePC provide to the users (IP Phone, usable Web Browser, Office Tools, Etc...) , this is the minimal required to go to mass market....
    In actual state you only can sell Efika boards on Mass Market with a customized Linux distribution and eventually bundle Morphos for Free...

    To have missing features in an Amiga-Os like for mass market , there is no secrets, you will have to invest money in developpement...

    SixK
  • »29.08.08 - 10:28
    Profile Visit Website