Slashdot Mirror


NetBSD's COMPAT_DARWIN Adds XDarwin Support

Dan writes "NetBSD's Emmanual Dreyfus says that COMPAT_DARWIN is now able to run Mac OS X's XDarwin (this is, the X Window server for Darwin). The server is fully functional: display, keyboard and mouse work. He says that running Darwin has no interest in itself, but having it working ensures that NetBSD's IOKit (1) emulation is good enough to be used. Darwin is Apple's Mac OS X core. A fully functional Darwin binary compatibility on NetBSD/powerpc & NetBSD/i386 will imply getting MacOS X libraries to run any Mac OS X program, just like NetBSD is now able to run binaries from Linux, FreeBSD, Solaris, and many other OSes."

29 of 255 comments (clear)

  1. Plain English by randomErr · · Score: 3, Insightful

    So in plain English this means that Mac OSX programs will soon be able to run on BSD and eventually Linux?

    --
    You say things that offend me and I can deal with it. Can you?
    1. Re:Plain English by Sebby · · Score: 4, Informative
      No.

      That would require emulating the Apple's APIs for everything in the OS.

      Given that most of it is proprietary, this is very unlikely to happen, though not impossible (just look at Wine)...

      --

      AC comments get piped to /dev/null
    2. Re:Plain English by BrookHarty · · Score: 4, Interesting

      The post doesnt make it clear, this is about PowerPC os's and emulation. Doesnt mean you can take X86 code, and run it on the netbsd for PPC.

      Remember this is binary compatibility, not emulation: programs run at full speed, but only on a NetBSD machine with the same CPU the program was designed for. Binary compatiblity does not enable running Linux/i386 binaries on NetBSD/powerpc, for instance.

      So far Mac OSX only runs on PPC. So if you run NetBSD on PPC, your set. But then, Why not use MOL (Mac On Linux)?

    3. Re:Plain English by Gherald · · Score: 3, Informative

      Actually, you can take all that wonderful BSD licensed code, strap the GPL on it, and redistribute.

      The FSF calls the BSD license "GPL compatible" in that regard.

    4. Re:Plain English by __aavhli5779 · · Score: 3, Informative

      One of the major APIs for OS X already exists in an open-source form called are.

      Of course, this is not emulation, rather source compatibility.

      Throw in a GNUstep Makefile and new interface files, and you can have apps that compile from the same source on any free *NIX with GNUstep and on OS X with Cocoa.

    5. Re:Plain English by aminorex · · Score: 3, Interesting

      > > The PPC is a far better designed chip, of
      > > course,

      > By what do you base your claims on?

      I make a similar claim. I base it on
      experience writing assembly code and
      compilers to assembly code for both
      architectures.

      --
      -I like my women like I like my tea: green-
  2. So what's the implication here? by numbski · · Score: 4, Interesting

    Are you trying to get to a point where you can run any OSX binary, including the Cocoa/Aqua environment itself?

    Nifty for sure, but you start to wonder about the usefulness of this...I mean, in order to legally use the more interesting, useful parts of the OS, you would have to own a copy of OSX, unless for some reason the soft Unix underbelly of Darwin doesn't fit your needs, and you want a more traditional BSD, but still be able to use the OSX GUI.

    If you're making a unix binary compatibility for just standard CLI or X-Windows, it cries out of 'what's the point'.

    So what is the point?

    --

    Karma: Chameleon (mostly due to the fact that you come and go).

  3. Only apps without Aqua by Offwhite98 · · Score: 3, Insightful

    The apps which will work will be the ones that only use the BSD core and not the entire Aqua graphics layer where the majority of popular MacOS X application run. But it is conceivable that an emulation of Aqua could be created for NetBSD which could replace X11. And since X11 is really show its age, I think a replacement for the graphics layer on Unix-like system is long in coming. Emulating the Dock and other MacOS UI features would be great. Just ask the developers at WindowMaker.

    --
    Brennan Stehling - http://brennan.offwhite.net/blog/
  4. ah, so THAT's the point! (RTFA): by numbski · · Score: 4, Informative
    Running Darwin has no interest in itself, but having it working ensures
    that our IOKit (1) emulation is good enough to be used . The real target
    now is MacOS X's WindowServer. WindowServer is like XDarwin for the
    quartz displaying system, which is used natively by MacOS X
    applications.

    See the status page at http://hcpnet.free.fr/applebsd.html for more
    informations.


    They're trying to get the OSX environment running on NetBSD instead of Darwin. I'm failing to see the point of this other than a different package manager...anyone else see a benefit to this? Drivers? Cheaper hardware? All looks the same to me...
    --

    Karma: Chameleon (mostly due to the fact that you come and go).

  5. XDarwin and NetBSD/powerpc binary compatibility by ubiquitin · · Score: 3, Insightful

    Although the post by Emmanual Dreyfus indicates that XDarwin is essentially a test case, this is a rather important test case. If you can run XDarwin, you're just a short hop away from having all of the X11 apps along with it. Also, imagine a package system like the fink working equally well on OSX and NetBSD. You could develop on OSX with its comfortable GUI and deploy to NetBSD with its comfortable price.

    --
    http://tinyurl.com/4ny52
  6. Re:Totally Confused by Anonymous Coward · · Score: 5, Informative

    The goal is to run MacOS X's programs on NetBSD/powerpc. One of the problems is that thoses programs do not use X11, they use quartz.

    We have no free software display server for Quartz. Emmanuel Dreyfus had three options to get the job done:
    1) Write a Quartz display server
    2) Write a Quartz to X11 bridge
    3) Emulate enough of MacOS X to get MacOS X's Quartz display server to run on NetBSD.

    He chose option 3. It is not an easy job since MacOS X I/O are done through the IOKit, which completely differs from UNIX I/O API.

    XDarwin is the X11 server for MacOS X. It uses the IOKit to access the display, keyboard and mouse. Having XDarwin fully fonctionnal on NetBSD means that NetBSD IOKit emulation is in good shape. It is the first step on the right direction.

    Next step is to run MacOS X's Quartz display server itself.

  7. Re:Here's the point! by Arker · · Score: 3, Insightful

    Apple won't port OS X to i386 so we'll do it for them. That's the point. Even if we have to buy a copy of OS X and hack the install, we'd still be able to run it on i386. That's the point, and a damn good one if you ask me.

    Knock yourself out, but I can tell you right now that it won't be nearly as impressive as it sounds. X86 cpus really look bad when they try to emulate PPC/SPARC/Alpha and the like. You'll be a hell of a lot better off just buying a PPC box.

    --
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-
    Friends don't let friends enable ecmascript.
  8. some posts here are crazy.. by minus_273 · · Score: 4, Insightful

    while it would be very nice, this DOES NOT let you run OSX apps on linux, not on and i386. This simply lets you run binaries for the PPC processor from OSX on netbsd running on a PPC. Not just any binaries too, just those that dont use the Aqua GUI. Dont really see the point of it aside from it being a nice technical achievement, kinda like running darwin on an i386.. no real point just cool :)

    --
    The war with islam is a war on the beast
    The war on terror is a war for peace
  9. Re:Next stop, Quartz... then Aqua by johram · · Score: 5, Insightful

    The point isn't "free" as in "free-OS". The point is embracing open standards.

    Apple might have a proprietary OS in Panther but it is based on standards that allow for easy networking and integration into existing frameworks.

    --
    "Fighting for peace is like fucking for chastity."
  10. Why I find this interesting by Stonent1 · · Score: 3, Interesting

    As the Mac OS series moves on, certain hardware is eventually dropped. This may be their only chance to keep their system going with something current. Also it adds the possibility to use any NetBSD supported PCI cards on your Mac.

    This reminds me of Theo talking about running SunOS (68k) binaries on really fast 68k hardware supported by OpenBSD.

  11. Re:ah, so THAT's the point! (RTFA): by numbski · · Score: 3, Interesting

    I follow you now...uber_cool device gets released for Macintosh. Specialized device, no BSD drivers written.

    IOKit allows these drivers to work on NetBSD/PPC.

    Nice.

    --

    Karma: Chameleon (mostly due to the fact that you come and go).

  12. Re:Next stop, Quartz... then Aqua by IM6100 · · Score: 4, Interesting

    Actually, that isn't the case at all.

    NetBSD has a substancial cross-platform 'packages' library of source code and a robust build system. Most packages, when they appear ready for one architecture, are ready and buildable on any other architecture. If you're not going to be running MacOS stuff in that 'Macintosh' API layer(s), you're FAR BETTER OFF running NetBSD/macPPC than you are running Darwin alone on your Apple hardware. Furthermore, if you run multiple architectures, with NetBSD you'll be able to admin the same exact /etc structure on your i386, sparc, sparc64, macPPC, prep, m68k, etc. boxes.

    I threw Darwin on my beige G3 machine last week, from the ISO downloadable from the OpenDarwin project. It installed fine and booted properly (I had specifically told it what drive to install itself on and it instead installed on a different drive, wiping out my MacOS 9 partition, but I don't hold a grudge about that)

    I looked at the Unix command prompt, said 'gee whiz, it works, but there's no packages to run' and took it off. I noted while reading the howtos at opendarwin.org that the binary packages they have built require you to use the MacOS X installer to put them on your system.

    I do not own a copy of MacOS X. It was a no-starter proposition for me. Nor am I about to buy OS X for a Beige G3 just to install 'free' software packages on it.

    --
    A Good Intro to NetBS
  13. I keep seeing this, and I keep laughing by FredFnord · · Score: 3, Insightful

    Funny, I thought BSD's popularity was skyrocketing.

    After all, all those MacOS X boxes... 3% market share... millions of people... plus, since Macs from back in 1998 can run the latest version of MacOS X (I'm typing on one now), and lots of people do that, probably significantly more than 3% of the installed base.

    BSD sure isn't in any danger from where I'm standing, although who'd'a thunk that Apple would be its saviour?

    -fred

    --
    Sign #11 of Slashdot overdose: You see the phrase 'moderate Republican' and you wonder if that would be a +1 or a -1.
  14. Re:ah, so THAT's the point! (RTFA): by JamieF · · Score: 5, Funny

    Exactly, because Everybody Knows that microkernels are slow.

    (Does it count as a troll if you're serious?)

    Wait, let me see if I can connect some of them...

    Microkernels being slow are the reason Macs are so much slower than PC's! And if Apple would just:
    (a) port to x86
    (b) drop the microkernel in favor of Linux
    (c) allow clones
    (d) run Windows apps
    (e) use Windows drivers
    (f) eliminate their greedy 75% profit margins
    ... then Macs would take over the world!

    Hey, this is fun!

  15. Re:Next stop, Quartz... then Aqua by Jade+E.+2 · · Score: 4, Funny
    I had specifically told it what drive to install itself on and it instead installed on a different drive, wiping out my MacOS 9 partition, but I don't hold a grudge about that
    Don't hold a grudge? Hell, that sounds to me like a feature.
  16. Do you ever just read a headline like this.... by caitsith01 · · Score: 4, Funny

    and wonder if you could be doing something more with your life?

    "NetBSD's COMPAT_DARWIN Adds XDarwin Support" What the fuck is that? It's not even vaguely english. Probably the majority of people who know what it means are reading this site right now.

    Reminds me of (what else) The Simpsons:

    Comic Book Guy [reading comic]: "No aquaman... you cannot marry a woman without gills! You're from two different worlds!"

    [looks up to see a nuclear warhead streaking towards him]

    "Oh, I've wasted my life."

    [kabooooom!]

    --
    Read Pynchon.
  17. Re:Next stop, Quartz... then Aqua by anarkhos · · Score: 3, Insightful

    Aqua isn't a library. It's a specification nobody seems to follow.

    Quartz isn't necessary to run most Carbon apps. I'd start there.

    --
    >80 column hard wrapped e-mail is not a sign of intelligent
    >life
  18. Re:ah, so THAT's the point! (RTFA): by Temporal · · Score: 4, Funny

    Don't forget, BeOS used a microkernel, and we all know how slow it was. It took almost 15 seconds to boot! I couldn't stand it. I remember how I used to play video games on my game boy to keep me entertained while I waited. And don't get me started on how it could only run Quake 2 25%-50% faster than any other OS. I mean, really, it was unplayable at such speeds. No wonder Be went out of business.

    Linus says microkernels suck. I think we should all place our blind faith in whatever he says. So, next time someone comes around offering you a shiney new microkernel, remember to just say "no".

  19. What this really means... by Anonymous Coward · · Score: 3, Interesting

    I posted this in a thread above, but only one person's noticed. I hate to whore, but really, many of the comments lack perspective on the situation overall.

    So if you appreciate this, please do whatever Slashmojo it takes to make it visible, or do the same for the original?

    ---

    IOKit points to drivers. So if someone crafts a driver for the Macintosh (popular consumer hardware platform, that), it should work:

    -On PowerPC machines running NetBSD, be they Macs or the few open PowerPC boards (AmigaOne, Pegasos) cropping up. ... Remember, the existing Mac ports don't let you use Mac drivers any more than you can use Windows drivers on Linux/i386.

    -Hopefully with a simple recompile on NetBSD i386/etc. So for companies that have the sense to open-source their drivers, this is a shortcut to using them on NetBSD without rewriting the code itself for a new API.

    Niche, but a nice hack, and with XDarwin working, also a convenience for PPC users if they come across a plain X11 app only available as a Darwin binary. (Rare now, but we don't know how it'll play out; look how annoying the Macromedia Flash plugin makes life on FreeBSD/i386; it's only distributed as a Linux binary, so you need the 'Linuxulator' to take advantage.)

    ---

    Yep. As others have pointed out, it's also a shortcut to letting the Quartz server binaries from OS X run on NetBSD/PPC (just like X11 needs to be built to talk to the hardware through standard UNIX APIs or direct rendering modules, Quartz needs to be able to talk to the hardware through IOKit), but Apple's EULA probably bars that, so I don't see that as bragging rights. Drivers are third-party code, so they're not governed by Apple's licensing. :)

    However, there may be a loophole - as I understand Apple's EULA, they don't care what you do with the software, as long as you only run it on their hardware. So Mac-on-Linux, which is more of a VMWare type deal, is perfectly legal under Yellow Dog or whatever -- *if* you're running it on Apple hardware, and have a license for your seat of OS X -- and Quartz atop NetBSD should equally be fine. (It could even be useful, depending on your opinion of NetBSD versus xnu [apple.com]. I gather a few people actually use Linux+MoL for improved stability; NetBSD+COMPAT_DARWIN+Quartz would offer the same, but with even fewer virtualization overheads.)

    However, since Apple doesn't sell any version of OS X permitting use on non-Apple hardware, users of the new 'alternative' PowerPC boards are left out in the legal cold. (In the USA; if you live in a jurisdiction where EULAs don't hold and software is sold on copyright alone, go wild... but don't expect Apple to tolerate it any more than Microsoft tolerated DR-DOS or post-partnership OS/2.)

    ---

    Okay, new content for this post: Can we stop arguing subjective things like package managers? It's a great distraction from the real issues in this thread. To lay that one to rest... well, let's put it this way - you can use the NetBSD pkgsrc collection on Darwin if you really want to. Choose your poison based on the kernels, not subjective nonissues with userland.

  20. Re:Not just nifty by quigonn · · Score: 3, Informative

    Darwin is more than just the kernel, it's also the non-graphical userland. Darwin's kernel is actually called "xnu". And Darwin is licensed under the Apple Public Source License, version 2, which is actually GPL-compatible. They even worked together with the FSF to ensure this.

    --
    A monkey is doing the real work for me.
  21. Re:Next stop, Quartz... then Aqua by spinspin · · Score: 3, Informative

    DarwinPorts will allow you to install ports from source, and appearently yum offers the ability to install binaries. The point being that Darwin is supposed to be a fully functional unix, not just the little bastard child that's kept in the cellar. Mostly useful I think when (as you pointed out) you want to keep multiple systems with identical configurations, or things that relate to administering or serving to os x machines, when you don't need the gui.

  22. Running Mac software on Linux/*BSD by damieng · · Score: 4, Informative

    The fact that all Mac binaries are PPC is going to mean at best on i386 platforms you're going to have to use emulation, a better approach is to emulate the Cocoa API allowing a recompile for i386/whatever.

    The Cocoa API is basically the NextStep API with Quartz replacing Display Postscript for the display composition/rendering and a number of additional classes and extensions since. (Display Postscript was licenced, Quartz is based on the free PDF specification).

    The original NextStep API exists on non-PPC platforms in two forms;

    The first is Apple's own implementation which was called 'Yellow Box' back in the NextStep days and let you recompile your apps for Windows. Alas there were licencing issues that Apple claim meant the runtime was expensive to deploy.

    Apple still use this runtime in WebObjects for Windows - I don't know if it's been extended to keep up with the OSX enhancements.

    The second option is an interesting project called GNUStep who are working towards a complete implementation of the NextStep API and have stated they will add Cocoa's extensions where they provide value. With it being open source you could always add any missing classes/functionality yourself.

    This project is usable on FreeBSD and Linux and the core and gui classes are nearly complete however the developer tools themselves are not. This i not a problem however if you are developing on OSX and using them for a port.

    --
    [)amien
  23. Re:ah, so THAT's the point! (RTFA): by line.at.infinity · · Score: 4, Funny

    Microkernels being slow are the reason Macs are so much slower than PC's!

    My PC runs a microkernel OS (Windows 2000), but I didn't notice any slow-downs when I switched from Windows 98.

  24. Standards not always good by 0x0d0a · · Score: 4, Insightful

    Apple might have a proprietary OS in Panther but it is based on standards that allow for easy networking and integration into existing frameworks.

    This is just an aside, and doesn't directly relate to MacOS.

    For a long time, I used to think "standards good, propriatary bad". I wanted everything I used to be standards compliant.

    Then I got into the industry, and ran into some of the standards-setting folks.

    The good news is that generally folks involved with setting standards are reasonably (not necessarily the best) competent. It's not as good a situation as the brutally harsh meritocracy of Linux development, where code with vast amounts of time and effort can get thrown out because someone else came up with a better/faster system, but it ensures some degree of sanity.

    However, politicking involved in standards committees is horrible. Generally, standards are set by industry consortiums, a recipe for disaster. Everyone has their personal pet features they want in, for starters. They then have to advance the interests of their company, so they try to exclude things that might benefit their competitors, and include support for things they're working on (even if they're technically inferior -- so if IBM is making a worse system than Dinky Company, Inc., it's likely that the technically inferior method gets used.). People are under pressure to finalize standards in time for products based on them to come out -- if there are still issues, too bad. Because different companies may prefer different methods of doing something/have different methods under work already, standards need to include support for both. Standards are frequently bad about exluding redundant methods of doing something. Finally, standards are frequently designed for companies doing a product implementation. They often cost money, and while complete they may not be particularly clear. This compares poorly against the RFCs that provide specifications for traditional Internet protocols today (yes, traditionally RFCs weren't final specs, but they are today).

    I've come to realize that "open" is more important than "standardized". If you write a good specification for something, distribute it freely, and you've done a good job with designing the system, others can (and will) adopt the system (if it's better than the alternatives). yEnc, gzip and png were originally "open", though not standardized, and (perhaps more crucially) none were produced by industry consortiums.