Slashdot Mirror


Interest in Embedded Linux Remains Low

burnin1965 writes "According to EE Times interest in embedded linux remains low. I was surprised to see their headline considering I just purchased a Sony TV which runs linux and I assisted my brother in setting up an Actiontec DSL modem which runs linux. A few years back I had only heard of devices that ran embedded linux and now that they are starting show up everywhere interest is low? The survey did bring up three issues which should be addressed by the embedded linux community, whether those issues are misconceptions or actual problems. 1) Incompatibility with software, applications, and drivers. 2) Performance or real time capability. And 3) support."

23 of 270 comments (clear)

  1. Is 17% low by Chrisq · · Score: 3, Insightful

    I would have said that 17% of designers using embedded Linux is quite respectable. I wonder what their target penetration was.

  2. It's about economics by Anonymous Coward · · Score: 4, Insightful

    If I'm going to make a million of something, I'm willing to spend a lot of money on engineering to save fifty cents per unit. I'm willing to spend the extra effort required to use Linux.

    On the other hand, if I'm making ten units of something, engineering time is my largest expense. In that case, I don't particularly care about license fees or the cost of the tools, I just want to get the job done as fast as possible.

    So, consumer goods will use Linux but most developers don't design those. Most developers work on projects that won't be produced in large numbers. Therefore most developers will continue not to use Linux.

    1. Re:It's about economics by ricklow · · Score: 5, Insightful

      You've got it exactly backwards. If you're going to make a million of something, you want the bill of materials cost to be as low as possible, whereas you aren't as worried about the non-recurring engineering. That's why Linux, with it's larger memory footprint, but lower development cost, is often non-competitive.

      Look at the latest Linksys WRT54 router. They've abandoned Linux and gone to VxWorks, despite the huge up-front cost for WindRiver tools, but they can use half the memory chips. This is a big win on a large production run.

      On a limited production item, you often can't afford commercial tools, because it will make the selling price of your product non-competitive. Just the price of one copy of the VxWorks tools will probably add about $20 to the BOM cost on a production run of 1,000.

      --
      "Oh God help us. We're in the hands of engineers."
  3. 1/3 of the market is huge by bill_mcgonigle · · Score: 4, Insightful

    Only 17 percent of embedded systems designers are currently using embedded Linux, and 66 percent say they are either not interested in using it or do not expect to be using it anytime soon

    So, reading this backwards, a third of embedded systems developers are interested in embedded Linux and/or expect to be using it soon.

    Compared with where the market was five years ago this is huge. Of the other two thirds, a large percentage goes to TRON and probably VxWorks. And if you want vendor-provided qualified platforms and support, you can get that from the same folks who make VxWorks.

    Surely a change in survey results from a year ago is something to be curious about but there's no indication it's a trend.

    --
    My God, it's Full of Source!
    OUTSIDE_IP=$(dig +short my.ip @outsideip.net)
  4. Re:dvd players by Smorkin'+Labbit · · Score: 3, Insightful

    Yes; using ".." and "." is nothing Linux-specific at all. It has been the UNIX way of listing "Parent directory" and "Current directory" for ages (and probably in other OSes as well), so using their presence as an indication of Linux usage is quite worthless.

  5. Re:GPL? by kg4czo · · Score: 2, Insightful

    The problems come when a company doesn't comply with the GPL. The thing is, you can use your closed and proprietary stuff in your products which you don't have to release the source to should you distribute it. Many companies are doing it, and still complying with the GPL. I would venture to guess that companies that don't get it and fail to follow the license would find themselves in trouble. It's the same for any other licensing schema: You break the rules, you either comply and make it right or you don't have the right to use it.

    But I see what you're saying. If a company doesn't want to comply, or doesn't understand the GPL enough to, they should move on and use something else more suited to their business model.

  6. (embedded) linux in standalone devices by gb7djk · · Score: 3, Insightful

    Which question were people answering? Are you intending to use an "embedded linux" or just "linux" in a small standalone device? We use a "standard" linux in several standalone devices. We have no need for, nor do we want to use a "specialist" distribution because we do want to be locked in. It is no coincidence that one of the more fertile areas of cpu support development in the kernel, at the moment, is for ARM devices.

  7. dont forget #4 by nurb432 · · Score: 2, Insightful

    Most embedded applications dont even need an OS.. thats overkill for them and would only serve to raise the end cost. You dont need linux in your Microwave for example.

    --
    ---- Booth was a patriot ----
    1. Re:dont forget #4 by Anonymous Coward · · Score: 1, Insightful

      I myself do a lot of PIC development, and the above poster is absolutely correct. I never run an OS on PICs. I've been doing stuff with smaller ARMs lately as well (Philips LPC2103, $1.50) and I don't bother to run an OS on those, either. You just don't have the space. On the PICs I use, I often have no more than 128 bytes of RAM. I have to scrimp and save to make things work. If the program is complicated I often have to resort to asm to get it to fit. Optimizing compilers don't seem to work so well in 8-bit land, but that's largely a symptom of the fact that compilers don't work well in 8-bit land.

    2. Re:dont forget #4 by Valdrax · · Score: 2, Insightful

      According to my CS class on operating systems an OS is "a program that controls all resources, starts and stops tasks (processes, programs...) and assigns ressources to and withdraws them from the tasks".

      Such a thing is generally referred to as an OS if it's responsible for handling the execution of other programs that are loaded and unloaded from memory. However, if such a program is the only program running on a device, then it's generally not considered an OS. Most embedded systems have only a single program for each execution unit and are not considered to have an OS. What they have is generally considered firmware.

      --
      If it's for-profit but free, you're not the customer -- you're the product (e.g., the Slashdot Beta's "audience").
  8. Re:GPL? by grimwell · · Score: 2, Insightful

    Who wants to invest money in developing a product, only to have the open source community go after you? And you get bashed for trying to earn a living.

    I don't think the GPL crowd is "going after people for trying to earn a living", they are simply protecting their work. If you use GPL'd code, you have to make it available it... those are the conditions of use. Pretty simple.

    I developed an embedded device using NetBSD. I would love to use Linux, but the agressive stance of the GPL license (Linksys!!) keeps me away. I know many others that share the same view.

    I think Linksys's choice to use Linux actually helped them. Their wireless AP(WRT54G) is quite popular due to its openness. The openness allows for mods&add-ons and this in turns promotes a community around the product. One could say it helps build "Brand Loyalty" and provides free positive PR(for the product at least).

    How much custom code you adding? From the sounds of it(worried about GPL) you aren't adding much; maybe a driver or two. And in the end you gave back to NetBSD anyways, so I don't really understand your complaint.

    Beside if someone is going to rip you off, wouldn't it be another manufacturer? In which case if you had use GPL'd code, you could at least force them to provide the GPL'd code used. Level the playing field? With a BSD license, you'd know they ripped you off but had no way of forcing them to release the code.

    Yes, completely ignoring if the device under a patent.

    --
    If the govt becomes a lawbreaker, it breeds contempt for law, it invites man to become his own law, it invites anarchy
  9. Missing figures by 1u3hr · · Score: 2, Insightful

    Well, TFA tells us haow many are using Linux, 17%, and are thinking about it, etc. But how can we make any conclusions form this when it isn't even hinted at what the other 83% are using? Some version of Windows? QNX? DOS? Is Linux at 17% the largest or much smaller than the others? Maybe the EETimes readers have the context, but I don't.

  10. Designers vs Units by LordLucless · · Score: 2, Insightful

    The article talks about the number of designers who are working on Embedded Linux projects. It says nothing at all about Embedded Linux's market penetration.

    If, for example, you have 1000 projects using an embedded OS of some kind. Let's say 900 of these are going to be either small-run, specialised devices, or flops. The remaining 100 are consumer items, mass-produced and sold around the world. If Linux's 17% happens to account for a large proportion of the top 100 projects, their market penetration is huge. If it's 17% accounts only for small-run projects, then it's not doing that great.

    A better heuristic, IMO, would be how many units are being produced with embedded Linux, rather than how many designers are using Linux.

    --
    Just because you're paranoid doesn't mean there isn't an invisible demon about to eat your face
  11. Creating perception, not reporting reality by deacon · · Score: 2, Insightful
    Other possibility is that this publication is doing what mainstream media has been doing for years:

    Trying to create a trend or perception where there is none. Witness all those smarmy "the suit is back" articles.

    In addition to accepting paid and free propaganda, trying to create public hysteria to influence political outcomes, the MSM survives on renting reader's eyeballs to advertisers. Whatever it takes to do that, they will do. Slashdot itself has fallen into that same cycle, with regular articles about "political" subjects sure to get 800 replies (and corresponding ad impressions) but with no valid technical content.

    New SuperSig:



    ....


    Make the requirements to vote the same as to own a gun.

    Simply go to the polling place, fill out a Form 4473, show your ID, and the poll worker will check with the FBI database to make sure that you're not prohibited from voting. If everything is working correctly, you will be allowed to vote in a few minutes.

    If the GCA/Brady system doesn't violate the rights of gun owners, then what possible objection could there be to implementing the same system for voting?

    Robert Racansky

  12. Re:GPL? by gowen · · Score: 4, Insightful
    And you get bashed for trying to earn a living.
    I think you mean "You get bashed for trying to earn a living off other people's work, without giving anything back."

    The rules are simple : reciprocate or fuck off.
    --
    Athletic Scholarships to universities make as much sense as academic scholarships to sports teams.
  13. Re:GPL? by Anonymous Coward · · Score: 1, Insightful
    The thing is, you can use your closed and proprietary stuff in your products which you don't have to release the source to should you distribute it. Many companies are doing it, and still complying with the GPL.

    But are they really? Linus has said in the past that binary kernel modules do not meet the requirements of the GPL and he's even pointed to Nvidia as an offending party even though they ship an open-source middleware layer between their driver and the kernel. In Linus's view all drivers that run on Linux should be open source. This makes it exceedingly difficult to develop proprietary hardware that you want to keep out of the hands of your competitors. These companies are being attacked from two angles at once... from one side people are beating them up over using patents to protect their intellectual property and from the software side they're getting beat up for using closed source software to hide the interfaces to that hardware.

  14. Re:GPL? by Anonymous Coward · · Score: 2, Insightful

    I agree that the GPL is largely to blame.

    It's not at all about not wanting to give back your changes. The main problem is the static linking clause (LGPL kindof solves that).. in most of the projects we made, there is some part (think decoders, etc) that's licensed from a third party and simply can't be shared.
    So that rules linux right out, cause more often that not everything's linked together into one big image.

    We've considered using open source libraries quite often.. it'd be great to be able to use a network stack or whatever, and publish the changes. But every single time, the GPL has made that impossible.

  15. Embedded Linux, Industrial controls by Nichole_knc · · Score: 2, Insightful

    OK, I am a firm beleiver in embedded Linux, extreme SFF computers and/or "OS-on-a-chip". After review of the Article and posting it appears most ppl think of embedded devices as strictly "consumer" type products. Rightful so as the article did not address "who" (read end-user) target the embed was targeted for. Yet there are hundreds products on the market for Industrial control applications and thousands of consumer products. If the the designers surveyed where from the industrial controls sector then yes Linux embedded devices and their use is low. If from a consumer product stand point then the article is flawed. Multi embedded Linux systems in an automated industrial enviroment would be much better, far more reliable, much more expandable and more easier to manage then the "old" tech in use today, namely the PLC. Look at it. A famous named PLC offers 16k-32k of program storage, communicates via a modified 485 or Ethernet with a $1200.00 piece of hardware. Takes a $1000.00+ software bundle to program it (just One class). OH I forgot... Starting price NEW for an expandable controller is as much as its ID number. I have seen PLC rack add $15000.00 to a project (single piece of equipment) and that is not a very big rack at all. Don't forget the software - PLC, Scanner, HMI, Ethernet Interface and wares for a computer to talk to it.(another $5g) For that kind of cash you could put in embeds to control the whole process and be redunant. Bottom line . . . That is really what it is about. IMO PLCs are relics from the past that need to be trashed and embedded PCs is the now and future

  16. Yes, the GPL is just HORRIBLE!!! by Anonymous Coward · · Score: 1, Insightful

    "Who wants to invest money in developing a product, only to have the open source community go after you? And you get bashed for trying to earn a living."

    I know that Tivo and Cisco (Linksys) hate the GPL. I mean, if you look here http://www.tivo.com/linux/linux.asp you can see that Tivo thinks the way to stay in business is to hold the source code close. And of course, using open source, GPL'd software is a way to drive Linksys out of business http://www.wi-fiplanet.com/tutorials/article.php/3 562391

    If your business model depends on closed source, then you are increasingly a dinosaur. It's like the employee who thinks he has job security by keeping what he does a "secret" from his boss. It only works for a little while.

  17. Re:dvd players by miro+f · · Score: 2, Insightful

    you'll find it clever when you're administrating a server and you are trying to look inside someone's home directory, and when you type 'ls' instead of listing the directory contents it actually runs a custom script in their directory which does something nasty with full privelages.

    Although I remember coming across a distro where . was in the path by default for all users except root. I still think it's better off that . is not in the path at all.

    --
    being vague is almost as cool as doing that other thing...
  18. Bogus Survey? by alas_anon · · Score: 2, Insightful
    I can't find the actual survey online. I found some other articles by people with the same frustration. I want to see how the questions were framed.

    I have done embedded design for more than 20 years. I have been subjected to many goofy surveys than were written by marketing suits who were clueless about how to ask proper questions. The typical survey says "Will you be doing an embedded design in the next 6 months? Y/N" and then it gives some kernels to choose from. The category of "hand rolled" is always the winner (~50%). This is because most embedded designs are quite small (8 and 16 bit) and buying a canned kernel is too much bother. Linux is not an option on these little processors (gross overkill and no MMU protection anyway).

    The survey should ask "Will you be doing a 32 bit embedded design and if so, what will you use as a kernel?" If the design does not require TCP/IP networking, I still would seriously consider hand rolled as an option. When you make the kernel yourself you are not dependant on the support of the kernel provider.

    I've never done an embedded Linux design, but I sure would like to. My only concern would be the complexity of dealing with the GPL (I ain't no lawyer). I'm accustom to hiding the source to prevent knock-off designs. In government research designs I willingly release the full design, but in commercial design it sets off alarm bells in my mind. I'm not sure what the reaction of a customer/employer would be if I told them I was going to release their code to the internet. I'll have to figure that part out.

  19. Linux is being used in highend embedded devices by bensch128 · · Score: 2, Insightful

    My Experience (and my current job) says that the post is wrong.

    We're developing an embedded medical device with millisecond lantency needs.
    We get to use a 192MHz arm chip which is more then enough to use a linux kernel and drive our application. It's not hard real-time like a rocket control but it's more then enough for us.

    Kernel and framework support for the popular embedded boards and chips (arm) is growing extremely fast, so much so that its better (for us) to use the latest distributed kernel then attempt to get Montavista to support us. Performance is more then enough so why shouldn't people use linux in the embedded devices. It's makes a hell of a lot more sense then trying to hack around a properitary kernel and toolchain.

    The big win for linux is the similarity between using desktop linux and the embedded device. Also all of the services (ftp, NFS, ethernet, ping) which are available on desktop linux are also available on embedded with just one recompile. Setting up the toolchain was the hardest thing to do (and gdb still doesn't work 100%) but after that, everything WORKs exactly as before....

    And don't even get me started on Qte

    Cheers,
    Ben

    PS. For the hardware complainers who don't know what ioperm is for, try looking it up.
    You get direct access to registers.

  20. Real Numbers Elusive by soloport · · Score: 2, Insightful

    I'd guess the numbers don't reflect reality -- developer reality. They probably reflect economic reality (where numbers are easier to track). There are three companies I know of, just off the top of my head, that use embedded Linux in their products (and have worked at two of them, myself). If you asked their PR department, "Do you use Linux in your products?" you'd probably either get a blank stare or a dismissive "No. Our products work with Windows." i.e. Only Engineering has a clue.