Slashdot Mirror


ARM-Powered Linux Laptops Unveiled At Computex

Charbax writes "At Computex in Taipei on June 2-6th, several companies unveiled ARM-powered laptops that are cheaper ($99 to $199), last much longer on a regular 3-cell battery (8-15 hours) and can still add cool new features such as a built-in HDMI 720p or 1080p output, 3D acceleration, connected standby and more. The ARM Linux laptops shown as working prototypes at Computex will run Ubuntu 9.10 (optimized for ARM), Google Android, Xandros OS for ARM, or some Red Flag Linux type of OS. In this video, the Director of Mobile Computing at ARM, is giving us all the latest details on the status for the support of full Flash (with all actionscripts), the optimizations of the web browser (accelerating rendering/scrolling using the GPU/DSP), the stuff that Google is working on to adapt Android 2.0 Donut release for laptop screens and interfaces and more. At Computex I also filmed an interview with the Nvidia team working on Tegra laptops, the Qualcomm people working on Snapdragon devices and the Freescale people doing their awesomely thin ARM laptops in cooperation with manufacturers such as Pegatron as well."

15 of 272 comments (clear)

  1. Targeting the Chinese/Indian market? by MathFox · · Score: 4, Interesting

    I would buy such a 9" smartbook and use it as ultraportable second laptop (as it can do OOo impress presentations it would be very useful too.) I can imagine other computer users in Europe and the US to buy such a machine as second (third) system. However, if the suppliers can keep prices under the $200, it will be an affordable system for "the masses" in China, India and South America that were unable to afford their own PC before. Somehow, prices for netbooks crept up with the addition of harddisks and Windows.

    --
    extern warranty;
    main()
    {
    (void)warranty;
    }
  2. Who's gonna sell these? by eddy · · Score: 4, Interesting

    I don't understand who are going to sell these when Microsoft call them up and say "Oh, I see you're selling computers with [non-windows OS], that's interesting... Yeaaahh so... you know those rebates you get on Windows? Yeah, you can forget about those. Have a nice day"

    Do they think they're safe because they're on ARM?

    --
    Belief is the currency of delusion.
  3. ARM floodgates blown? by moon3 · · Score: 5, Interesting

    The most interesting part is that those devices have integrated CPU/GPU/Video Accel. on a single chip. Something that Intel, AMD and nVidia is pursuing for a long time, but these ARM based solutions from Qualcomm, Texas Instruments and others are delivering now and the performance / power consumption ratio is already impressive.

  4. Re:Will they run Linux? by Nerdfest · · Score: 3, Interesting
    I'd consider buying one for the extended battery life as long as it's not too much slower. I generally only use a netbook for browsing, and occasionally remoting into home machines, but occasionally will run Eclipse or NetBeans. As it is, the big drawback is not the processor, but the vertical screen resolution that stops me from doing it more often.

    That said, I work in software development, and I'm the only one I know that has a netbook. I've heard that in Europe, purchase rates are 8-10 times higher than here in North America. Why is that?

  5. 7" size missing by Anonymous Coward · · Score: 3, Interesting

    As another Nokia Internet Tablet user, I look forward to a slightly larger size, but retaining 2+ days of battery use. 10" screens are too large.

    Don't get me wrong, my N800 is good for highly portable needs (geocaching, mobile email, skype, lite blogging), all without a mandatory cell data plan, but there are times when a larger screen would be useful without adding weight. A Eee is too heavy and too large. A 7" screen with a built-in keyboard that I can touch type on and GPS included would be really nice. Some external connections - monitor, keyboard, USB, 100base-tx would be really nice too. Those missing things hurt N800/N810 adoption, IMHO.

    No need to support video editing or any other high powered processing. Just lite word processing, spreadsheets, web surfing, email, plus all the things the N800 does already.

  6. RiscOS by Dynamoo · · Score: 3, Interesting

    Of course, RiscOS is a tailor-made OS for ARM processors. That really is a very lightweight and simple OS and while it doesn't have the applications available that a Linux distro does, it might make an interesting port for this sort of platform.

    --
    Never email donotemail@WeAreSpammers.com
    1. Re:RiscOS by david.given · · Score: 4, Interesting

      Last year I put together a basic kernel reimplementation in portable C (as much as possible); interested parties may want to check it out. It was a pretty unpleasant job. While RISC OS looks elegant on the surface, inside it's a nasty maze of inconsistent APIs, duplicated APIs, APIs that require certain (unfriendly) implementations, APIs that should have been deprecated and haven't been, APIs that don't exist and should to avoid having to read the kernel private workspace, and most terrible of all, APIs that expose kernel implementation details. And, just to add insult to injury, most of RISC OS is written in hard-to-maintain machine code. (And the APIs are very unfriendly to C.)

      Not to mention the fact that RISC OS is missing certain bits of functionality that everyone nowadays takes for granted: threads, preemptive multitasking, memory protection between processes, a GUI that can be driven from the keyboard...

      Given how much of an overhaul it would need to be meet modern standards of functionality, it'd probably be easier just to start again from scratch with a proper OS design. I find myself rather intrigued by Prex, for example, which is a minimalist embedded operating system with hypervisor-like functionality and a Unixish system call interface. And, unlike RISC OS, it's BSD licensed.

    2. Re:RiscOS by horza · · Score: 3, Interesting

      There is certainly some truth to what you say, though I may disagree with some of your interpretations. Though I have been away from RiscOS for a number of years, so cannot comment on the current state, I always found the APIs a pleasure to use. The ability to add or patch 'modules' was great. I interned at Acorn for my Masters and worked directly on the kernel (the http module amongst other things) and found the source well written and commented. There was certainly some ARM assembler (not quite the same as machine code) but I don't remember it being 'most' of RiscOS. I bow to your more recent knowledge though, you seem to have investigated quite thoroughly.

      I've written RiscOS apps in ARM, C and BASIC, and it is the most pleasurable computer experience I have ever had. Even BASIC apps ran full speed, and GUI apps were a doddle to write. From a user perspective it was the most productive windowing system for its time. It did have limitations, however, and was very targeted at Acorn's own hardware.

      I disagree that it misses preemptive multi-tasking and threads. It was a design decision to go with co-operative multi-taking, much like Linus decided to go with a monolithic kernel instead of a micro-kernel. And in much the same way as one was supposed to be theoretically better than the other but one "just worked", RiscOS was the fastest most responsive OS on the market. One software manufacturer forced their clients to buy Acorn computers just to run their software as no other OS was responsive enough to run it (Sibelius). It requires a different way of thinking, much like writing a Twisted module instead of an Apache one, but for all the theory of a rogue app slowing or taking down the OS in practice it never happened.

      Though from a performance perspective RiscOS would be perfect for a netbook, and would be more responsive than most other OS, it doesn't make sense from a commercial perspective over Linux due to the vast wealth of available software easily ported. It is an easy choice for users between a slight performance increase, and Ubuntu with thousands of free apps installable in a single mouse click for free.

      Phillip.

  7. At least someone different sees Linux's problems by bogaboga · · Score: 5, Interesting

    From one of the linked articles...

    "He acknowledged two concerns for smartbooks are the lack of native support for Adobe Flash on ARM and the fragmentation of Linux application environments. However, he said solutions to both issues are in the works." Emphasis in bold mine.

    And further,

    "One of the downsides of Linux is the fragmented nature of it," he said. "That's why so many designers are excited about Google's Android, because it's managed by a single entity," he added."

    Now, these are folks doing very serious work with Linux. Many Slashdoters have said the same things only to be branded as trolls. I can see a future for Android if Google continues to do a good job.

  8. Re:Here, we obey the laws of physics by timeOday · · Score: 3, Interesting

    PS I would seriously consider buying a portable add-on E-ink screen for my laptop. It would have to be thin enough to sit in front of the normal screen (not with the lid closed, of course), and plug into the laptop's VGA output. Sure it would be monochrome and have a sluggish response time. But for sitting outside doing word-processing or spreadsheets, and consulting wikipedia etc, that would be fine. The add-on route would avoid having to make a special-purpose laptop with only an E-ink screen, which I agree is not too attractive.

  9. Re:At least someone different sees Linux's problem by christurkel · · Score: 5, Interesting

    So they're happy to have a single entity that focus on a subset of hardware with a consistent API and a development force behind it. Where have I heard that before? Let's see, it's run by a mercurial egomaniac...

    --

    CDE open sourced! https://sourceforge.net/projects/cdesktopenv/
  10. Re:Wow by Larryish · · Score: 4, Interesting

    Linux fonts and the Linux interface in general (I use Gnome) have really improved. In fact, many cross-platform apps like Firefox and OpenOffice don't show any appreciable difference between the Linux version and the Windows version.

    Example:

    I gave my mother-in-law a used laptop early last year, Gateway Solo 5300 700mhz with half a gig of RAM and Ubuntu 7.10

    It was the first computer she ever actually owned. She had only used Windows machines up to that point.

    She teaches at her hometown high school and uses her computer for email, browsing the web, editing Word documents and playing Mahjong.

    I never once had her call for help, and she was able to do everything that she needed.

    About 3 months ago the machine went dead, most likely a motherboard problem.

    She had me find her a decent laptop on eBay, gave me a budget of $250. I roped in a 1 ghz Thinkpad for around 190 bucks and she requested that I set it up with Ubuntu. So I graduated her up to Ubuntu 8.04, handed her the machine, and haven't had a support call yet.

    Unless you are an avid gamer, or your job/hobby requires esoteric software that only runs on Windows, Linux is ready for the desktop. Your 60 year old mother-in-law could even use it.

  11. Re:Will they run Linux? by vivaelamor · · Score: 5, Interesting

    If you take a look at the progress the Moblin distribution has made for the atom processor then you can see what is possible with a full blown OS. Near instantanious bootup (faster than a lot of phones) as well as an innovative yet full featured small screen interface. I am sure that linux can adapt to slower processors faster than Windows CE can adapt to bigger screens considering linux is already feature complete for computers a lot slower than the new arm processor.

    One point you make which seems really fuzzy is about the tasks you do on a netbook being the same as the tasks you would do on a phone. I would be surprised if 99.9% of what you wanted to do on a current Windows CE device would include using a webcam, watching a high definition movie, running a complete development environment, playing strategy games, troubleshooting a network, writing a novel, running project management software, file sharing with a windows network.. etc. Basically, there is a lot you can do with a slow computer as long as the screen is big enough.

  12. Re:No one can stop the x86 train... by Bazer · · Score: 3, Interesting

    It draws 250mW when using the ARM core (complete with FPU and vector unit), the DSP, the OpenGL 2 ES GPU, the 512 MB of flash and 256MB of RAM and the other integrated components in the package.

    You have got to be kidding me. This is ridiculous. If this is what x86 compatibility costs in terms of power consumption, then this is a killer feature. If ARM laptops will get an order of magnitude more runtime on battery power, compared to their x86 counter-parts then Microsoft shareholders are going to be very disappointed in the coming year.

  13. I don't understand their thought process... by Qubit · · Score: 4, Interesting

    the status for the support of full Flash (with all actionscripts)

    Gnash is getting extremely close to being a drop-in Free Software replacement for the Adobe Flash Player. In the linked videos, the ARM director of mobile computing was talking about how the ARM folks were working with Adobe to get Adobe Flash running on the ARM processors, but Gnash has already had ARM support for years. If they're demoing Ubuntu -- a Free Software OS -- on these machines, then why not use a Free Software program to play Flash programs on them? Why not invest their time and energy in the Free Software project?

    Rob Savoye (lead dev for Gnash) wrote a bit on this topic on the gnash-dev mailing list:

    Jason Guiditta wrote:
    > Just saw this...article...bsquared porting flash lite to run on an upcoming dell
    > netbook.

    Yes, I'm familiar with Bsquared. They're porting the Adobe v10 to
    embedded platforms, basically getting rid of Flash Lite, which has
    always been somewhat limited. I've talked to several company's also
    talking to Bsquared.

    > ...This seems like a perfect opportunity to get some
    > funding for gnash, since it is already designed to run on so many
    > platforms. If a big company like Dell is willing to pay to get flash
    > well-supported on their netbook, why could that player not be gnash?

    We'd need a contact at a sufficiently high level. Of the companies I
    know using BSquared's promised flashplayer for ARM, MIPS, etc... have
    decided they'd rather spend hundreds of thousands of $$$ for the
    Bsquared solution, than give much smaller amounts to Gnash, which
    already runs on the ARM and Android. Big companies that prefer
    proprietary software seems to prefer to give business to each other,
    regardless pf the much higher price tag. Of the few machines I've played
    with the Bsquared plugin on, it usually hung the browser in seconds, and
    many other stability problems. But I guess they'll get it right
    eventually...

    I also talked to Google about Gnash for Android several times, but
    they don't appear to be interested in the slightest. Unfortunately, the
    only people willing to support Gnash with any funding are people that
    believe strongly in free software solutions already. To those people, I
    can't thank you enough!

                    - rob -

    Free Software can be a great benefit to the hardware folks like ARM, and can be great for a mobile platform like Android, but it's sad that these groups don't seem to take any interest in what the Free Software community is offering. That's why it's so important for people to donate time, code, and/or money to projects like Gnash. Software Freedom isn't going to just happen without people like you and me stepping up and getting stuff done.

    --

    coding is life /* the rest is */