Running a Standard Linux Distribution on a Smartphone

Total Page:16

File Type:pdf, Size:1020Kb

Running a Standard Linux Distribution on a Smartphone CA R L VON O SS IETZKY DEPARTMENT FÜR INFORMATIK SYSTEMSOFTWARE UND VERTEILTE SYSTEME Running a standard Linux distribution on a smartphone Masterthesis Computer Science July 13, 2015 Sebastian Reichel (Matrikelnummer: 1104957) Otto-Wels-Str. 82 26133 Oldenburg Erstprüfer Prof. Dr.-Ing. Oliver Theel Zweitprüfer Eike Möhlmann, Dipl. Inform. Erklärung zur Urheberschaft Hiermit versichere ich, dass ich diese Arbeit selbstständig verfasst und keine anderen als die angegebenen Hilfsmittel und Quellen benutzt habe. Oldenburg, den July 12, 2015 Sebastian Reichel Contents 1. Introduction 2 2. Hardware Architecture6 3. Serial Access 12 4. Linux Kernel 23 4.1. N900 kernel support..................................... 25 4.2. Accelerometer......................................... 27 4.3. Modem............................................ 29 4.4. ARM Errata 430973..................................... 32 4.5. Bluetooth........................................... 33 4.6. Camera Subsystem...................................... 36 5. Userland 41 5.1. Graphical User Interface................................... 41 5.2. Wireless LAN......................................... 42 5.3. The modem.......................................... 43 6. Function tests 47 6.1. Updates & Security Updates................................. 47 6.2. Voice Calls.......................................... 47 6.3. Short Messages........................................ 48 6.4. Web Surfing.......................................... 49 6.5. Customization......................................... 50 7. Outlook 51 8. Conclusion 55 iv Contents Appendix 56 A. Debian Image 57 B. ISI-Protocol 62 C. Accelerometer Patches 70 D. OpenSCAD code 75 E. Bill of Materials 76 F. Simple Ofono Dialer 77 Bibliography 83 Glossary 86 v List of Figures 2.1. N900 DT graph........................................9 2.2. DT graph of OMAP3430’s system bus............................ 10 2.3. DT graph Nokia N900’s second I2C port........................... 10 3.1. Coverless N900’s back with labeled serial test pads..................... 12 3.2. Pogo-Pin profile........................................ 13 3.3. Battery adapter design in Inkscape.............................. 14 3.4. Serial adapter schematic (designed with KiCad)....................... 16 3.5. Generating G-Code for Gerber-files using FlatCAM..................... 18 3.6. left: Front and back of the adapter’s PCB; right: PCB with crepe-tape-stencil....... 18 3.7. Colorized vector information for the laser cutter....................... 19 3.8. 3D-rendering of the layers.................................. 20 3.9. N900 with attached debug adapter.............................. 21 4.1. Flow-graph of kernel forks.................................. 23 4.2. Kernel-development flow................................... 24 4.4. Modem interconnection.................................... 29 4.5. Modem protocol stack.................................... 31 4.6. BCM2048 setup........................................ 34 4.7. Camera setup......................................... 37 4.8. OMAP’s image signal processor in Linux.......................... 39 4.9. N900 camera setup in Linux................................. 40 5.1. Screenshot from Enlightenment running in vertical split mode............... 43 6.1. Voice call handling in ofono-dialer.............................. 48 6.2. SMS handling in ofono-dialer................................ 49 6.3. LXDE running on the Nokia N900.............................. 50 B.1. GPS Session.......................................... 64 B.2. GPS Session in Wireshark.................................. 69 vi List of Tables 1.1. Smartphone Operating System Comparison.........................4 4.1. Major Linux Kernel Releases................................. 25 4.2. N900 Linux Kernel Support (Status: Linux Kernel 4.0)................... 26 4.3. Nokia H4+ Packet Types................................... 34 B.1. PhoNet Header........................................ 62 B.2. ISI Resource IDs (excerpt of most important IDs)...................... 62 B.3. ISI Header........................................... 63 B.4. GPS Session: Status Indication Subscription......................... 63 B.5. GPS Session: Hybrid Tracking Request........................... 65 B.6. GPS Session: Hybrid Tracking Response.......................... 65 B.7. GPS Session: Socket Open Request............................. 66 B.8. GPS Session: Socket Send Request.............................. 66 B.9. GPS Session: Socket Receive Request............................ 67 B.10. GPS Session: GPS Status Indication: No Lock........................ 67 B.11. GPS Session: GPS Status Indication: Lock Acquired.................... 67 B.12. GPS Session: Hybrid Location Data............................. 68 E.1. Bill of Materials for UART Adapter PCB.......................... 76 vii Listings 2.1. Simplified Nokia N900 Device Tree Source File.......................7 2.2. Simplified and Merged SPI4 Excerpt from Nokia N900 Device Tree Source File......8 3.1. Nokia N900 Boot Log.................................... 21 4.1. Simplified Nokia N900 Display Connection DT excerpt................... 37 5.1. Starting X-Server together with an XTerm.......................... 41 5.2. X.org Touchscreen Configuration............................... 42 5.3. Patch adding ofono support to the cmt-speech plugin of the FSO-audio daemon...... 45 6.1. Initialize a voice call from command line using mdbus2................... 47 6.2. Send a SMS using mdbus................................... 48 C.1. [PATCH] lis3lv02d: DT: use s32 to support negative values................. 70 C.2. [PATCH] lis3lv02d: DT: add wakeup unit 2 and wakeup threshold............. 71 C.3. [PATCH] Documentation: DT: lis302: update wakeup binding............... 72 C.4. [PATCH] DTS: ARM: OMAP3-N900: Add lis3lv02d support................ 73 D.1. OpenSCAD-Code for 3D-rendering of the Serial-Adapter.................. 75 F.1. Simple Ofono dialing and short message application..................... 77 viii Abstract The aim of this thesis is running a free operating system on a smartphone, which shares many components and principles with the operating system already used on the desktop PC. As a result users and developers can use the software they are used to on their PC and on their smartphone. Compared to other closed source alternatives it also means, that any code audits are more likely reducing the probability of built-in backdoors. The thesis is written using Debian as example Linux distribution and uses the Nokia N900 as hardware base. One reason for choosing the Nokia N900 was, that the main Linux kernel used by the Debian project has already support for all base hardware components. The first part of the thesis will describe how the kernel support for the Nokia N900 can be improved, while the second part focuses on the userspace software. 1. Introduction Nowadays it is common, that one can install a arbitrary Linux distribution on ones notebook or desktop computer. Installing it on a smartphone is a completely different issue, though. Currently the Linux kernel, as available on kernel.org, does not support a complete smartphone and as a result most Linux distributions do not provide any smartphone support. Smartphones, in difference to desktop PCs and notebooks are commonly shipped with a locked down sys- tem running Android, iOS or Windows Phone these days [27]. Of these smartphone distributions only Android is mostly based on open source software, while iOS and Windows Phone are closed source soft- ware and always shipped with the hardware. From a users point of view the open source development model has a few advantages: 1. Auditability: Since the software’s source code is available in public, it is possible to review it. If the user does not understand the programming language, there is still an increased chance, that other people review the source code. This is an important factor in times of intelligence agencies being suspected of adding backdoors to software. 2. Freedom: Since everything is open, everything can be adjusted to fit the user’s preferences. This also counts for any bugs, that are found. While closed source software requires, that the vendor fixes the bug, user’s can do it themselves. There is no dependency on the vendor’s support. Additionally trying the software is most times free of charge. While the term free in free software refers to the independence, most software is also free of charge. Since Windows Phone and iOS are not open source software and may even come with a hardware lock, they will not be further compared with the aimed smartphone support for a major Linux distribution. Android’s base system on the other hand is available as open source software and is even using the Linux kernel as base. Nevertheless Android is quite different from most other Linux distributions, since it brings its own software stack on top of the Linux kernel with minimal use of existing projects already available. Apart from that vendors are not actively working on getting their software modifications back into the original projects. Instead many vendors copy the software’s source code and continue working on the copy (also known as fork). In the Android community these kind of forks are usually referred to as „vendor- customized”. As a result of the missing work on getting the software modifications back into the original projects, the current Linux kernel does not support the complete hardware components of any smartphone. At the same time the amount
Recommended publications
  • Firefox 1.1 for Nokia N900 Reviewer's Guide
    Firefox 1.1 for Nokia N900 Reviewer’s Guide Firefox 1.1 for Nokia N900 Reviewer’s Guide Table of Contents What’s new in Firefox 1.1 for the Nokia N900 1 1. About Mozilla 2 2. Firefox for Mobile 2 3. Mozilla’s Mobile Vision 3 4. Getting Started 4 5. New & Improved 6 6. Do More With Your Web 7 7. Firefox Mobile and Desktop Browsing 9 8. A Summary of Firefox Features 11 9. Under the Hood 12 Firefox 1.1 for Nokia N900 Reviewer’s Guide What’s new in Firefox 1.1 for the Nokia N900 Highlights: tFirefox lets you browse in landscape and portrait mode tVolume rocker lets you zoom in and out tPersonalized Start page helps you pick up where you left off tAdd-ons auto-update and you can view the full add-on gallery tFill out forms more easily with autocomplete improvements tSmart Tapping lets you tap on links, widgets and other Web content with accuracy tContext Menu lets you Open in New Tab and Save Image by long tapping and holding a link tSave to PDF in the Site Menu lets you capture important content, like a receipt or boarding pass, to view offline or access quickly tForget Password in the Site Menu tells a website you no longer trust to forget your private data tAdd Search Engine in the Site Menu lets you quickly add a new search engine to your Awesome Screen tAnd many more Firefox features on page 11 Page 1 Firefox for Nokia N900 Reviewer’s Guide Firefox 1.1 for Nokia N900 Reviewer’s Guide 1.
    [Show full text]
  • A Survey on Architectures of Mobile Operating Systems: Challenges and Issues
    International Journal of Research Studies in Computer Science and Engineering (IJRSCSE) Volume 2, Issue 3, March 2015, PP 73-76 ISSN 2349-4840 (Print) & ISSN 2349-4859 (Online) www.arcjournals.org A Survey on Architectures of Mobile Operating Systems: Challenges and Issues Prof. Y. K. Sundara Krishna1 HOD, Dept. of Computer Science, Krishna University Mr. G K Mohan Devarakonda2 Research Scholar, Krishna University Abstract: In the early years of mobile evolution, Discontinued Platforms Current mobile devices are enabled only with voice services Platforms that allow the users to communicate with each other. Symbian OS Android But now a days, the mobile technology undergone Palm OS IOS various changes to a great extent so that the devices Maemo OS Windows Phone allows the users not only to communicate but also to Meego OS Firefox OS attain a variety of services such as video calls, faster Black Berry OS browsing services,2d and 3d games, Camera, 2.1 Symbian OS: This Operating system was Banking Services, GPS services, File sharing developed by NOKIA. services, Tracking Services, M-Commerce and so many. The changes in mobile technology may be due Architecture: to Operating System or Hardware or Network or Memory. This paper presents a survey on evolutions SYMBIAN OS GUI Library in mobile developments especially on mobile operating system Architectures, challenges and Issues in various mobile operating Systems. Application Engines JAVA VM 1. INTRODUCTION Servers (Operating System Services) A Mobile operating system is a System Software that is specifically designed to run on handheld devices Symbian OS Base (File Server, Kernel) such as Mobile Phones, PDA’s.
    [Show full text]
  • Enabling Musical Applications on a Linux Phone
    University of Wollongong Research Online Faculty of Creative Arts - Papers (Archive) Faculty of Arts, Social Sciences & Humanities 2009 Enabling Musical Applications On A Linux Phone Greg Schiemer University of Wollongong, [email protected] E. Chen Royal Melbourne Institute of Technology Follow this and additional works at: https://ro.uow.edu.au/creartspapers Part of the Arts and Humanities Commons, and the Social and Behavioral Sciences Commons Recommended Citation Schiemer, Greg and Chen, E.: Enabling Musical Applications On A Linux Phone 2009. https://ro.uow.edu.au/creartspapers/36 Research Online is the open access institutional repository for the University of Wollongong. For further information contact the UOW Library: [email protected] ENABLING MUSICAL APPLICATIONS ON A LINUX PHONE Greg Schiemer Eva Cheng Sonic Arts Research Network School of Electrical and Computer Faculty of Creative Arts Engineering University of Wollongong RMIT Melbourne 2522 3000 The prospect of using compiled Arm9 native code of- fers a way to synthesise music using generic music soft- ABSTRACT ware such as Pure data and Csound rather than interpre- tive languages like java and python which have been Over the past decade the mobile phone has evolved to used in mobile devices [1, 2]. A similar approach to mo- become a hardware platform for musical interaction and bile synthesis has been adopted using the Symbian oper- is increasingly being taken seriously by composers and ating system [3]. instrument designers alike. Its gradual evolution has seen The Linux environment is more suited to the devel- improvements in hardware architecture that require al- opment of new applications in embedded hardware than ternative methods of programming.
    [Show full text]
  • Mobile Platform Security Architectures: Software
    Lecture 3 MOBILE SOFTWARE PLATFORM SECURITY You will be learning: . General model for mobile platform security Key security techniques and general architecture . Comparison of four systems Android, iOS, MeeGo (MSSF), Symbian 2 Mobile platforms revisited . Android ~2007 . Java ME ~2001 “feature phones”: 3 billion devices! Not in smartphone platforms . Symbian ~2004 First “smartphone” OS 3 Mobile platforms revisited . iOS ~2007 iP* devices; BSD-based . MeeGo ~2010 Linux-based MSSF (security architecture) . Windows Phone ~2010 . ... 4 Symbian . First widely deployed smartphone OS EPOC OS for Psion devices (1990s) . Microkernel architecture: OS components as user space services Accessed via Inter-process communication (IPC) 5 Symbian Platform Security . Introduced in ~2004 . Apps distributed via Nokia Store Sideloading supported . Permissions are called ‘capabilities’, fixed set (21) 4 Groups: User, System, Restricted, Manufacturer 6 Symbian Platform Security . Applications identified by: UID from protected range, based on trusted code signature Or UID picked by developer from unprotected range Optionally, vendor ID (VID), based on trusted code signature 7 Apple iOS . Native application development in Objective C Web applications on Webkit . Based on Darwin + TrustedBSD kernel extension TrustedBSD implements Mandatory Access Control Darwin also used in Mac OS X 8 iOS Platform Security . Apps distributed via iTunes App Store . One centralized signature authority Apple software vs. third party software . Runtime protection All third-party software sandboxed with same profile Permissions: ”entitlements” (post iOS 6) Contextual permission prompts: e.g. location 9 MeeGo . Linux-based open source OS, Intel, Nokia, Linux Foundation Evolved from Maemo and Moblin . Application development in Qt/C++ . Partially buried, but lives on Linux Foundation shifted to HTML5- based Tizen MeeGo -> Mer -> Jolla’s Sailfish OS 10 MeeGo Platform Security .
    [Show full text]
  • Completing the TAC Request Application Form
    Training Module Four: Completing the TAC Request Application Form TAC Application Module July 2018 v1.0 All product names, model numbers or other manufacturer identifiers not attributed to GSMA are the property of their respective owners. ©GSMA Ltd 2018 Before applying for TAC, your company must be registered and have sufficient TAC credit Brand owner 1 registration TAC 2 payment TAC 3 application TAC 4 certificate Select Request a TAC to begin the TAC Application Request Form process Take great care completing the form with the details of the device that will use the TAC The form has seven sections: 1 2 3 4 5 6 7 Device Manufacturing Operating Networks LPWAN Device Review details details System Certification Bodies Your details will already be there! 1 2 3 4 5 6 7 Device details Applicant name Applicant email This information is address automatically populated from log-in, It is not editable here C Brand Name Select the equipment type you require TAC for, from the dropdown 1 2 3 4 5 6 7 Device details Feature phone Smartphone Tablet IoT device Wearable Dongle Modem WLAN router There should be only one model name, but you may input up to three marketing names 1 2 3 4 5 6 7 Device details Device model name is a specific name given to the Model name handset. This can vary from the marketing name. The marketing name is typically used as the name the TM Marketing name device is sold/marketed to general public. You can include up to 3 marketing names, separated by a comma.
    [Show full text]
  • Lamadrid Android
    ANDROID FGSDFG FDDFGDF ANTITRUST Android antitrust investigation DOMINANT POSITION mokmdokamsdfkmasodmkfosakdmfosdkmf okmsadf IT MARKET ANDROID FGSDFG FDDFGDF ANTITRUST Android antitrust investigation DOMINANT POSITION mokmdokamsdfkmasodmkfosakdmfosdkmf okmsadf IT MARKET ANDROID FGSDFG FDDFGDF ANTITRUST Android antitrust investigation DOMINANT POSITION mokmdokamsdfkmasodmkfosakdmfosdkmf okmsadf IT MARKET ANDROID THOUGHTS IN BRIEF: FGSDFG FDDFGDF(i) A quick overview of the facts (ii) Business considerations and ANTITRUSTbackground DOMINANT(iii)The POSITION Law : (I) Dominance mokmdokamsdfkmasodmkfosakdmfosdkmf(iv)The Law: (II) Predatory okmsadf allegations IT MARKET(v) The Law: (III) Bundling allegations ANDROID FGSDFG THE FACTS FDDFGDF ANTITRUST DOMINANT POSITION mokmdokamsdfkmasodmkfosakdmfosdkmf okmsadf IT MARKET • AndroidANDROID is an open source OS licensed on a royalty-free basis. Licensees remain free to do whatever they wish with the code (e.g. downloading,FGSDFG distributing or modifying –forking- it). • OEMs remain free to use Android with or without Google Apps (e.g. NokiaFDDFGDF X). • WhenANTITRUST OEMs wish to offer certain Google apps on top of Android they can enter into a MADA which requires them to (i) preload a minimum set ofDOMINANT apps (GMS); POSITION (ii) place Search widget and GooglePlay icons in a certain way; and (iii) use Google Search as default engine for the searchmokmdokamsdfkmasodmkfosakdmfosdkmf intent. okmsadf • OEMs (and users) remain at all times free to pre-install at any time any nonIT MARKET-Google app (including a non-Google App Store) = no Google walled garden (room for intra-ecosystem competition) ANDROID A MATTER OF DIFFERENT FGSDFG FDDFGDFBUSINESS MODELS ANTITRUST DOMINANT POSITION mokmdokamsdfkmasodmkfosakdmfosdkmf okmsadf IT MARKET EssentiallyANDROID 3 different business models for mobile operating systems (OSs): i. Apple’s vertically integrated model - Monetization via sales of devices.
    [Show full text]
  • Meego Smartphones and Operating System Find a New Life in Jolla Ltd
    Jolla Ltd. Press Release July 7, 2012 Helsinki, Finland FOR IMMEDIATE RELEASE MeeGo Smartphones and Operating System Find a New Life in Jolla Ltd. Jolla Ltd. is an independent Finland based smartphone product company which continues the excellent work that Nokia started with MeeGo. The Jolla team is formed by directors and core professionals from Nokia's MeeGo N9 organisation, together with some of the best minds working on MeeGo in the communities. Jussi Hurmola, CEO Jolla Ltd.: "Nokia created something wonderful - the world's best smartphone product. It deserves to be continued, and we will do that together with all the bright and gifted people contributing to the MeeGo success story." Jolla Ltd. will design, develop and sell new MeeGo based smartphones. Together with international private investors and partners, a new smartphone using this MeeGo based OS will be revealed later this year. Jolla Ltd. has been developing a new smartphone product and the OS since the end of 2011. The OS has evolved from MeeGo OS using Mer Core and Qt with Jolla technology including its own brand new UI. The Jolla team consists of a substantial number of MeeGo's core engineers and directors, and is aggressively hiring the top MeeGo and Linux talent to contribute to the next generation smartphone production. Company is headquartered in Helsinki, Finland and has an R&D office in Tampere, Finland. Sincerely, Jolla Ltd. Dr. Antti Saarnio - Chairman & Finance Mr. Jussi Hurmola - CEO Mr. Sami Pienimäki - VP, Sales & Business Development Mr. Stefano Mosconi - CIO Mr. Marc Dillon - COO Further inquiries: [email protected] Jolla Ltd.
    [Show full text]
  • Mobile Linux Mojo the XYZ of Mobile Tlas PDQ!
    Mobile Linux Mojo The XYZ of Mobile TLAs PDQ! Bill Weinberg January 29, 2009 Copyright © 2009 Bill Weinberg, LinuxPundit,com Alphabet Soup . Too many TLAs – Non-profits – Commercial Entities – Tool Kits – Standards . ORG Typology – Standards Bodies – Implementation Consortia – Hybrids MIPS and Open Source Copyright © 2008 Bill Weinberg, LinuxPundit,com Page: 2 The Big Four . Ahem, Now Three . OHA - Open Handset Alliance – Founded by Google, together with Sprint, TIM, Motorola, et al. – Performs/support development of Android platform . LiMo Foundation – Orig. Motorola, NEC, NTT, Panasonic, Samsung, Vodaphone – Goal of created shared, open middleware mobile OS . LiPS - Linux Phone Standards Forum – Founded by France Telecom/Orange, ACCESS et al. – Worked to create standards for Linux-based telephony m/w – Merged with LiMo Foundation in June 2008 . Moblin - Mobile Linux – Founded by Intel, (initially) targeting Intel Atom CPUs – Platform / distribution to support MIDs, Nettops, UMPC MIPS and Open Source Copyright © 2008 Bill Weinberg, LinuxPundit,com Page: 3 LiMo and Android . Android is a complete mobile stack LiMo is a platform for enabling that includes applications applications and services Android, as Free Software, should LiMo membership represents appeal to Tier II/III OEMs and Tier I OEMs, ISVs and operators ODMs, who lack resources LiMo aims to leave Android strives to be “room for differentiation” a stylish phone stack LiMo presents Linux-native APIs Android is based on Dalvik, a Java work-alike The LiMo SDK has/will have compliance test suites OHA has a “non Fragmentation” pledge MIPS and Open Source Copyright © 2008 Bill Weinberg, LinuxPundit,com Page: 4 And a whole lot more .
    [Show full text]
  • Linux Foundation to Host Meego Workgroup
    Linux Foundation To Host MeeGo Workgroup New Open Source Software Platform Backed by Intel and Nokia will Power the Next Generation of Computing Devices SAN FRANCISCO, February 15, 2010 – The Linux Foundation, the nonprofit organization dedicated to accelerating the growth of Linux, today announced it will host the MeeGo project, the open source software platform for the next generation of computing devices. MeeGo combines Intel’s Moblin™ and Nokia’s Maemo projects into one Linux-based platform. MeeGo, announced today in a joint release by Intel and Nokia, will be deployed across many computing device types - including pocketable mobile computers, netbooks, tablets, mediaphones, connected TVs and in-vehicle infotainment systems, and brings together the leaders in computing and mobile communications as the project’s backers. MeeGo is designed for cross-device, cross-architecture computing and is built from the ground up for a new class of powerful computing devices. The workgroup will be hosted by the Linux Foundation as a fully open source project, encouraging community contributions in line with the best practices of the open source development model. The Linux Foundation expects MeeGo to be adopted widely by device manufacturers, network operators, software vendors and developers across multiple device types and for many organizations and developers to participate in the workgroup. “With MeeGo, you have the world’s leader in computing – Intel – uniting with the world’s leader in communications – Nokia – in a true open source project hosted at the Linux Foundation,” said Jim Zemlin, executive director at the Linux Foundation. “MeeGo has been built from the ground up for rich, mobile devices and will deliver choice to consumers without lock-in.
    [Show full text]
  • Overall Features Performance Price
    Scan this code for more info. To download a barcode app, SMS <f2k> to 56677 from a mobile phone with Internet access and camera. SMARTPHONE JOLLA Experience a different way of operating a smartphone without any home or back button — Ashok Pandey to operate, but those who are upgrading to taste the new flavor may struggle a little. At the start, it asks to setup your account and then, it guides you how to use the phone. The first screen reminded us of BB 10 OS. Since there is no Home button, you’ll have to learn a lot of gestures, shortcuts and cues. Sailfish OS sup- ports Android apps and games, and most apps run smoothly. Although there is no issue with Android apps and games on Jolla, but with third party apps like facebook you will find some functionality and notification differences, as Price: `15,490 they are not integrated with the system. Feels good and runs smooth: Jolla has 4.5-inch qHD (960x450p) display, though we were expecting a 720p display, yet screen has good viewing angles. The display is average to use in direct sunlight. It is backed by a 1.4GHz dual-core processor, 1GB RAM and 16 GB internal memory (13.7 GB available to the user) expandable via microSD card. Navigating the phone was quite easy, and launching and switching between apps was smooth. It is equipped with 8 MP rear camera with LED flash that captures quality images in day- light with decent color reproduction. The cam- here are many smartphone manufacturers era comes with several settings for the flash, and OS platforms available in the market.
    [Show full text]
  • Android Operating System
    Software Engineering ISSN: 2229-4007 & ISSN: 2229-4015, Volume 3, Issue 1, 2012, pp.-10-13. Available online at http://www.bioinfo.in/contents.php?id=76 ANDROID OPERATING SYSTEM NIMODIA C. AND DESHMUKH H.R. Babasaheb Naik College of Engineering, Pusad, MS, India. *Corresponding Author: Email- [email protected], [email protected] Received: February 21, 2012; Accepted: March 15, 2012 Abstract- Android is a software stack for mobile devices that includes an operating system, middleware and key applications. Android, an open source mobile device platform based on the Linux operating system. It has application Framework,enhanced graphics, integrated web browser, relational database, media support, LibWebCore web browser, wide variety of connectivity and much more applications. Android relies on Linux version 2.6 for core system services such as security, memory management, process management, network stack, and driver model. Architecture of Android consist of Applications. Linux kernel, libraries, application framework, Android Runtime. All applications are written using the Java programming language. Android mobile phone platform is going to be more secure than Apple’s iPhone or any other device in the long run. Keywords- 3G, Dalvik Virtual Machine, EGPRS, LiMo, Open Handset Alliance, SQLite, WCDMA/HSUPA Citation: Nimodia C. and Deshmukh H.R. (2012) Android Operating System. Software Engineering, ISSN: 2229-4007 & ISSN: 2229-4015, Volume 3, Issue 1, pp.-10-13. Copyright: Copyright©2012 Nimodia C. and Deshmukh H.R. This is an open-access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited.
    [Show full text]
  • Openmoko Is Dead. Long Live Openphoenux!
    Openmoko is dead. Long live OpenPhoenux! Nikolaus Schaller, Lukas Märdian LinuxTag, Berlin, May 26th, 2012 Agenda Part one: some history Part two: a long way home Part three: rising from the ashes Part four: flying higher Part five: use it as daily phone – software Q&A Nikolaus Schaller, Lukas Märdian OpenPhoenux | GTA04 May 26th 2012 LinuxTag 2012 wiki.openmoko.org | www.gta04.org 2 Some history – Past iterations • FIC GTA01 – Neo 1973 – Roughly 3.000 units sold – Production discontinued • Openmoko GTA02 – Neo Freerunner – Roughly 15.000 units sold – Hardware revision v7 – Production discontinued Nikolaus Schaller, Lukas Märdian OpenPhoenux | GTA04 May 26th 2012 LinuxTag 2012 wiki.openmoko.org | www.gta04.org 3 Some history – The End (of part I) • FIC and Openmoko got out • Strong community continues development • Golden Delicious taking the lead – Excellent support for existing devices – Shipping spare parts and add-ons – Tuned GTA02v7++ • Deep sleep fix (aka bug #1024) -> Improved standby time • Bass rework -> Improved sound quality Nikolaus Schaller, Lukas Märdian OpenPhoenux | GTA04 May 26th 2012 LinuxTag 2012 wiki.openmoko.org | www.gta04.org 4 Agenda Part one: some history Part two: a long way home Part three: rising from the ashes Part four: flying higher Part five: use it as daily phone – software Q&A Nikolaus Schaller, Lukas Märdian OpenPhoenux | GTA04 May 26th 2012 LinuxTag 2012 wiki.openmoko.org | www.gta04.org 5 A long way home How do we get to a new open mobile phone? – open kernel for big ${BRAND} – reverse eng. – order from some ${MANUFACTURER} – hope for openness – DIY, “Use the source, Luke!” Nikolaus Schaller, Lukas Märdian OpenPhoenux | GTA04 May 26th 2012 LinuxTag 2012 wiki.openmoko.org | www.gta04.org 6 Using the source: Beagleboard Beagleboard – Full Linux support – Open schematics – Open layout – Expansion connectors – Lots of documentation – Components available Nikolaus Schaller, Lukas Märdian OpenPhoenux | GTA04 May 26th 2012 LinuxTag 2012 wiki.openmoko.org | www.gta04.org 7 In theory it could fit (Aug.
    [Show full text]