SlideShare a Scribd company logo
1 of 16
Download to read offline
Linux for Embedded Systems
Linux operating system
•Linux was initially developed by Linus Torvalds in 1991 as
an operating system for IBM compatible personal
computers based on the Intel 80386 microprocessor.
•Linus remains deeply involved with improving Linux,
keeping it up-to-date with various hardware
developments and coordinating the activity of hundreds of
Linux developers around the world.
•Over the years, developers have worked to make Linux
available on other architectures, including Alpha, SPARC,
PowerPC, and ARM.
•Now it has been matured into a solid unix-like operating
system for workstations, networking and storage servers,
data centers, clusters and embedded systems.
What is Linux
• Linux is interchangeably used in reference to the Linux
  kernel, a Linux system, or a Linux distribution.
• Strictly speaking, Linux refers to the kernel maintained by
  Linus Torvalds and distributed under the same name
  through the main repository and various mirror sites.
• The kernel provides the core system facilities. It may not be
  the first software to run on the system, as a bootloader
  may have preceded it, but once it is running, it is never
  swapped out or removed from control until the system is
  shutdown.
• In effect, it controls all hardware and provides higher-level
  abstractions such as processes, sockets, and files to the
  different software running on the system.
•   Linux can also be used to designate a hardware system running the Linux
    kernel and various utilities running on the kernel.
     – If a friend mentions that his development team is using Linux in their
        latest product, he probably means more than the kernel.
     – A Linux system certainly includes the kernel, but most likely includes a
        number of other software components that are usually running with
        the Linux kernel.
     – Often, these will be composed of a subset of the software such as the
        C library and binary utilities. It may also include the X window system
•   Finally, Linux may also designate as a Linux distribution. Red Hat,
    Mandrake, SuSE, Debian, Slackware, Caldera, MontaVista, BlueCat, and
    others are all Linux distributions.
     – They may vary in purpose, size, and price, but they share a common
        purpose: to provide the user with a set of files and an installation
        procedure to get the kernel and various overlaid software installed on
        a certain type of hardware for a certain purpose
Linux kernel key features
• One of the more appealing
                                  • Security, it can’t hide its
  benefits to Linux is that it
  isn't a commercial operating      flaws. It code is reviewed by
  system: its source code           many experts.
  under the GNU Public            • Modularity, can include
  License is open and available     only what a system needs
  to everyone.                      even at run time
• Portable and hardware           • Exhaustive networking
  support . Runs on most            support
  hardware                        • Easy to program, you can
• Scalability, Can run on super     learn from existing code.
  computers as well as on tiny      Many useful resources on
  embedded devices.(4MB of          the net.
  RAM is enough)
• Linux is powerful              • Linux is highly compatible
  Linux systems are very fast,     with many common
  since they fully exploit the     operating systems
  features of the hardware         It lets you directly mount
  components                       file systems for all versions
• High standard for code           on MS-DOS, MS Windows,
  quality                          Mac OS, Solaris, many BSD
                                   variants and so on.
  Linux systems are usually
  very stable; they have a         It also provides supports for
  very low failure rate and        various networking
  system maintenance time          protocols and layers such as
                                   ethernet, fibre channel,
                                   IBM’s Token ring and so
                                   forth.
Embedded systems
• Embedded systems are everywhere in our
  lives, from mobile phones to medical
  equipment, including air navigation systems,
  automated bank tellers, MP3 players, printers,
  cars, and a slew of other devices about which
  we are often unaware.
• Every time you look around and can identify a
  device as containing a microprocessor, you've
  most likely found another embedded system.
•   An embedded system is a special purpose computer system that is designed to
    perform very small sets of designated activities.
     • Not meant to be traditional, general purpose computers
     • Examples : mobile phones, cameras, home multimedia, network appliances,
        transportation, industrial control, medical instrumentation, personal and air
        navigation systems
     • Uses application specific processors such as
          • ARM
          • x86
          • PowerPc
          • Even simpler microcontrollers
•   An embedded systems is designed from both hardware and software perspective,
    taking into account a specific application or set of applications. For e.g. your MP3
    player will have a separate hardware unit for MP3 decoding
•   Embedded systems are usually cost effective
Embedded Linux system architecture

 Development             Embedded Systems
     Host
      PC
                  Application            Application

     Tools
   Compiler    Library            Library         Library
   Debugger
      ….                         C library

                            Linux Kernel

                                Bootloader
Software components
• Cross-compilation tool chain
   – Compilers that runs on the development machines but
     generates code for the target machine
• Boot loader
   – Started by the hardware, responsible for basic hardware
     initialization, loading and executing the kernel
• Kernel
   – Contains the process and memory management, network stack,
     device drivers and services to user space
• C Library
   – The interface between the kernel and user space applications
• Libraries and applications
   – All user space components, open source, 3rd party or in-house
Introduction to Linux kernel
              • User/Application space,
                where applications are
                executed.
              • Kernel Space, where the
                kernel exist
              • GNU C library, this
                provides the system call
                interface, a mechanism
                to communicate
                between user space
                application and kernel
Kernel subsystem
• Kernel subsystem
•   System call interface: provides the means to perform function calls from
    user space into the kernel.
•   Process Management
     – Kernel in-charge of process creation and termination.
     – Communication among different processes (signals, IPC primitives)
     – Process scheduling, how processes share the CPU
•   Memory management
     – The kernel builds up the virtual address space for all the processes.
•   File systems
     – Linux is heavily based on file system concepts; almost everything is
         treated as file.
     – Linux supports multiple file systems types, i.e different ways of
         organizing data on the physical medium.
     – E.g. Ext2, ext3,
     – Virtual File system(VFS) provides a common interface abstraction for
         the various file systems supported by the kernel.
• Networking
   – The network stack is part of the kernel.
   – It is in charge of delivering data packets across applications and
     network interfaces.
   – All routing and address resolution issues are implemented
     within the kernel.
• Device control
   – Almost every system operations eventually maps to the
     physical device. Few exceptions such as CPU, memory, etc,
   – All device control operations are performed by the code, called
     as Device Driver.
• IPC
    – The interprocess communication on Linux includes signals, pipes and
      sockets, shared memory and message queues.
Device driver development using
             kernel modules
• Linux kernel has the ability to extend at runtime the set of features
  offered by the kernel. This means that you can add functionality to
  the kernel while the system is up and running.
• Each piece of code that can be loaded and unloaded into the kernel
  at runtime is called a module.
• Module extends the functionality of the kernel without the need to
  reboot the system.
• The Linux kernel offers support for quite a few different types (or
  classes) of modules, including, but not limited to, device drivers.
• Each module is made up of object code (not linked into a complete
  executable) that can be dynamically linked to the running kernel.
• Device drivers are developed for various hardware such hard disks,
  network controllers, USB devices, serial devices, display devices,
  printers
Advantages of modules
• Modules make it easy to develop drivers without
  rebooting: load, test, unload, rebuild & again load and so
  on.
• Useful to keep the kernel size to the minimum (essential in
  embedded systems). Without modules , would need to
  build monolithic kernel and add new functionality directly
  into the kernel image.
• Also useful to reduce boot time, you don’t need to spend
  time initializing device that may not be needed at boot
  time.
• Once loaded, modules have full control and privileges in
  the system. That’s why only the root user can load and
  unload the modules.

More Related Content

What's hot

U Boot or Universal Bootloader
U Boot or Universal BootloaderU Boot or Universal Bootloader
U Boot or Universal BootloaderSatpal Parmar
 
Arm device tree and linux device drivers
Arm device tree and linux device driversArm device tree and linux device drivers
Arm device tree and linux device driversHoucheng Lin
 
Linux Kernel Booting Process (1) - For NLKB
Linux Kernel Booting Process (1) - For NLKBLinux Kernel Booting Process (1) - For NLKB
Linux Kernel Booting Process (1) - For NLKBshimosawa
 
Embedded Linux BSP Training (Intro)
Embedded Linux BSP Training (Intro)Embedded Linux BSP Training (Intro)
Embedded Linux BSP Training (Intro)RuggedBoardGroup
 
Bootloaders (U-Boot)
Bootloaders (U-Boot) Bootloaders (U-Boot)
Bootloaders (U-Boot) Omkar Rane
 
Uboot startup sequence
Uboot startup sequenceUboot startup sequence
Uboot startup sequenceHoucheng Lin
 
Linux Char Device Driver
Linux Char Device DriverLinux Char Device Driver
Linux Char Device DriverGary Yeh
 

What's hot (20)

Linux systems - Getting started with setting up and embedded platform
Linux systems - Getting started with setting up and embedded platformLinux systems - Getting started with setting up and embedded platform
Linux systems - Getting started with setting up and embedded platform
 
U Boot or Universal Bootloader
U Boot or Universal BootloaderU Boot or Universal Bootloader
U Boot or Universal Bootloader
 
Arm device tree and linux device drivers
Arm device tree and linux device driversArm device tree and linux device drivers
Arm device tree and linux device drivers
 
Linux-Internals-and-Networking
Linux-Internals-and-NetworkingLinux-Internals-and-Networking
Linux-Internals-and-Networking
 
Linux Kernel Booting Process (1) - For NLKB
Linux Kernel Booting Process (1) - For NLKBLinux Kernel Booting Process (1) - For NLKB
Linux Kernel Booting Process (1) - For NLKB
 
BusyBox for Embedded Linux
BusyBox for Embedded LinuxBusyBox for Embedded Linux
BusyBox for Embedded Linux
 
Embedded Operating System - Linux
Embedded Operating System - LinuxEmbedded Operating System - Linux
Embedded Operating System - Linux
 
U-Boot - An universal bootloader
U-Boot - An universal bootloader U-Boot - An universal bootloader
U-Boot - An universal bootloader
 
Linux Internals - Part I
Linux Internals - Part ILinux Internals - Part I
Linux Internals - Part I
 
Linux Internals - Part II
Linux Internals - Part IILinux Internals - Part II
Linux Internals - Part II
 
Embedded Linux BSP Training (Intro)
Embedded Linux BSP Training (Intro)Embedded Linux BSP Training (Intro)
Embedded Linux BSP Training (Intro)
 
Embedded Linux on ARM
Embedded Linux on ARMEmbedded Linux on ARM
Embedded Linux on ARM
 
Bootloaders (U-Boot)
Bootloaders (U-Boot) Bootloaders (U-Boot)
Bootloaders (U-Boot)
 
Uboot startup sequence
Uboot startup sequenceUboot startup sequence
Uboot startup sequence
 
Linux Programming
Linux ProgrammingLinux Programming
Linux Programming
 
Spi drivers
Spi driversSpi drivers
Spi drivers
 
I2C Drivers
I2C DriversI2C Drivers
I2C Drivers
 
Linux Char Device Driver
Linux Char Device DriverLinux Char Device Driver
Linux Char Device Driver
 
Linux device drivers
Linux device driversLinux device drivers
Linux device drivers
 
Linux device drivers
Linux device drivers Linux device drivers
Linux device drivers
 

Similar to Linux for embedded_systems

Linux Operating System. UOG MARGHAZAR Campus
 Linux Operating System. UOG MARGHAZAR Campus Linux Operating System. UOG MARGHAZAR Campus
Linux Operating System. UOG MARGHAZAR CampusSYEDASADALI38
 
operating system ondesktop computer ( laptop)
operating system ondesktop  computer ( laptop)operating system ondesktop  computer ( laptop)
operating system ondesktop computer ( laptop)BandaruGowtham1
 
Raspberry Pi - Lecture 1 Introduction
Raspberry Pi - Lecture 1 IntroductionRaspberry Pi - Lecture 1 Introduction
Raspberry Pi - Lecture 1 IntroductionMohamed Abdallah
 
Embedded linux
Embedded linuxEmbedded linux
Embedded linuxWingston
 
Linux [2005]
Linux [2005]Linux [2005]
Linux [2005]Raul Soto
 
Operating system 15 micro kernel based os
Operating system 15 micro kernel based osOperating system 15 micro kernel based os
Operating system 15 micro kernel based osVaibhav Khanna
 
unixoperatingsystem-130327073532-phpapp01.pdf
unixoperatingsystem-130327073532-phpapp01.pdfunixoperatingsystem-130327073532-phpapp01.pdf
unixoperatingsystem-130327073532-phpapp01.pdfIxtiyorTeshaboyev
 
Regarding About Operating System Structure
Regarding About Operating System StructureRegarding About Operating System Structure
Regarding About Operating System Structuresankarkvdc
 
Building Embedded Linux Full Tutorial for ARM
Building Embedded Linux Full Tutorial for ARMBuilding Embedded Linux Full Tutorial for ARM
Building Embedded Linux Full Tutorial for ARMSherif Mousa
 
UNIX Operating System
UNIX Operating SystemUNIX Operating System
UNIX Operating SystemFatima Qayyum
 
Unix operating system
Unix operating systemUnix operating system
Unix operating systemABhay Panchal
 
Linux操作系统01 简介
Linux操作系统01 简介Linux操作系统01 简介
Linux操作系统01 简介lclsg123
 

Similar to Linux for embedded_systems (20)

The Linux System
The Linux SystemThe Linux System
The Linux System
 
Linux Operating System. UOG MARGHAZAR Campus
 Linux Operating System. UOG MARGHAZAR Campus Linux Operating System. UOG MARGHAZAR Campus
Linux Operating System. UOG MARGHAZAR Campus
 
operating system ondesktop computer ( laptop)
operating system ondesktop  computer ( laptop)operating system ondesktop  computer ( laptop)
operating system ondesktop computer ( laptop)
 
Raspberry Pi - Lecture 1 Introduction
Raspberry Pi - Lecture 1 IntroductionRaspberry Pi - Lecture 1 Introduction
Raspberry Pi - Lecture 1 Introduction
 
Linux
LinuxLinux
Linux
 
Embedded linux
Embedded linuxEmbedded linux
Embedded linux
 
Linux [2005]
Linux [2005]Linux [2005]
Linux [2005]
 
Linux forensics
Linux forensicsLinux forensics
Linux forensics
 
Linux basics
Linux basicsLinux basics
Linux basics
 
Operating system 15 micro kernel based os
Operating system 15 micro kernel based osOperating system 15 micro kernel based os
Operating system 15 micro kernel based os
 
Device Drivers
Device DriversDevice Drivers
Device Drivers
 
RT linux
RT linuxRT linux
RT linux
 
unixoperatingsystem-130327073532-phpapp01.pdf
unixoperatingsystem-130327073532-phpapp01.pdfunixoperatingsystem-130327073532-phpapp01.pdf
unixoperatingsystem-130327073532-phpapp01.pdf
 
운영체제론 Ch21
운영체제론 Ch21운영체제론 Ch21
운영체제론 Ch21
 
Regarding About Operating System Structure
Regarding About Operating System StructureRegarding About Operating System Structure
Regarding About Operating System Structure
 
Linux - Introductions to Linux Operating System
Linux - Introductions to Linux Operating SystemLinux - Introductions to Linux Operating System
Linux - Introductions to Linux Operating System
 
Building Embedded Linux Full Tutorial for ARM
Building Embedded Linux Full Tutorial for ARMBuilding Embedded Linux Full Tutorial for ARM
Building Embedded Linux Full Tutorial for ARM
 
UNIX Operating System
UNIX Operating SystemUNIX Operating System
UNIX Operating System
 
Unix operating system
Unix operating systemUnix operating system
Unix operating system
 
Linux操作系统01 简介
Linux操作系统01 简介Linux操作系统01 简介
Linux操作系统01 简介
 

Recently uploaded

Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 

Recently uploaded (20)

Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 

Linux for embedded_systems

  • 2. Linux operating system •Linux was initially developed by Linus Torvalds in 1991 as an operating system for IBM compatible personal computers based on the Intel 80386 microprocessor. •Linus remains deeply involved with improving Linux, keeping it up-to-date with various hardware developments and coordinating the activity of hundreds of Linux developers around the world. •Over the years, developers have worked to make Linux available on other architectures, including Alpha, SPARC, PowerPC, and ARM. •Now it has been matured into a solid unix-like operating system for workstations, networking and storage servers, data centers, clusters and embedded systems.
  • 3. What is Linux • Linux is interchangeably used in reference to the Linux kernel, a Linux system, or a Linux distribution. • Strictly speaking, Linux refers to the kernel maintained by Linus Torvalds and distributed under the same name through the main repository and various mirror sites. • The kernel provides the core system facilities. It may not be the first software to run on the system, as a bootloader may have preceded it, but once it is running, it is never swapped out or removed from control until the system is shutdown. • In effect, it controls all hardware and provides higher-level abstractions such as processes, sockets, and files to the different software running on the system.
  • 4. Linux can also be used to designate a hardware system running the Linux kernel and various utilities running on the kernel. – If a friend mentions that his development team is using Linux in their latest product, he probably means more than the kernel. – A Linux system certainly includes the kernel, but most likely includes a number of other software components that are usually running with the Linux kernel. – Often, these will be composed of a subset of the software such as the C library and binary utilities. It may also include the X window system • Finally, Linux may also designate as a Linux distribution. Red Hat, Mandrake, SuSE, Debian, Slackware, Caldera, MontaVista, BlueCat, and others are all Linux distributions. – They may vary in purpose, size, and price, but they share a common purpose: to provide the user with a set of files and an installation procedure to get the kernel and various overlaid software installed on a certain type of hardware for a certain purpose
  • 5. Linux kernel key features • One of the more appealing • Security, it can’t hide its benefits to Linux is that it isn't a commercial operating flaws. It code is reviewed by system: its source code many experts. under the GNU Public • Modularity, can include License is open and available only what a system needs to everyone. even at run time • Portable and hardware • Exhaustive networking support . Runs on most support hardware • Easy to program, you can • Scalability, Can run on super learn from existing code. computers as well as on tiny Many useful resources on embedded devices.(4MB of the net. RAM is enough)
  • 6. • Linux is powerful • Linux is highly compatible Linux systems are very fast, with many common since they fully exploit the operating systems features of the hardware It lets you directly mount components file systems for all versions • High standard for code on MS-DOS, MS Windows, quality Mac OS, Solaris, many BSD variants and so on. Linux systems are usually very stable; they have a It also provides supports for very low failure rate and various networking system maintenance time protocols and layers such as ethernet, fibre channel, IBM’s Token ring and so forth.
  • 7. Embedded systems • Embedded systems are everywhere in our lives, from mobile phones to medical equipment, including air navigation systems, automated bank tellers, MP3 players, printers, cars, and a slew of other devices about which we are often unaware. • Every time you look around and can identify a device as containing a microprocessor, you've most likely found another embedded system.
  • 8. An embedded system is a special purpose computer system that is designed to perform very small sets of designated activities. • Not meant to be traditional, general purpose computers • Examples : mobile phones, cameras, home multimedia, network appliances, transportation, industrial control, medical instrumentation, personal and air navigation systems • Uses application specific processors such as • ARM • x86 • PowerPc • Even simpler microcontrollers • An embedded systems is designed from both hardware and software perspective, taking into account a specific application or set of applications. For e.g. your MP3 player will have a separate hardware unit for MP3 decoding • Embedded systems are usually cost effective
  • 9. Embedded Linux system architecture Development Embedded Systems Host PC Application Application Tools Compiler Library Library Library Debugger …. C library Linux Kernel Bootloader
  • 10. Software components • Cross-compilation tool chain – Compilers that runs on the development machines but generates code for the target machine • Boot loader – Started by the hardware, responsible for basic hardware initialization, loading and executing the kernel • Kernel – Contains the process and memory management, network stack, device drivers and services to user space • C Library – The interface between the kernel and user space applications • Libraries and applications – All user space components, open source, 3rd party or in-house
  • 11. Introduction to Linux kernel • User/Application space, where applications are executed. • Kernel Space, where the kernel exist • GNU C library, this provides the system call interface, a mechanism to communicate between user space application and kernel
  • 13. System call interface: provides the means to perform function calls from user space into the kernel. • Process Management – Kernel in-charge of process creation and termination. – Communication among different processes (signals, IPC primitives) – Process scheduling, how processes share the CPU • Memory management – The kernel builds up the virtual address space for all the processes. • File systems – Linux is heavily based on file system concepts; almost everything is treated as file. – Linux supports multiple file systems types, i.e different ways of organizing data on the physical medium. – E.g. Ext2, ext3, – Virtual File system(VFS) provides a common interface abstraction for the various file systems supported by the kernel.
  • 14. • Networking – The network stack is part of the kernel. – It is in charge of delivering data packets across applications and network interfaces. – All routing and address resolution issues are implemented within the kernel. • Device control – Almost every system operations eventually maps to the physical device. Few exceptions such as CPU, memory, etc, – All device control operations are performed by the code, called as Device Driver. • IPC – The interprocess communication on Linux includes signals, pipes and sockets, shared memory and message queues.
  • 15. Device driver development using kernel modules • Linux kernel has the ability to extend at runtime the set of features offered by the kernel. This means that you can add functionality to the kernel while the system is up and running. • Each piece of code that can be loaded and unloaded into the kernel at runtime is called a module. • Module extends the functionality of the kernel without the need to reboot the system. • The Linux kernel offers support for quite a few different types (or classes) of modules, including, but not limited to, device drivers. • Each module is made up of object code (not linked into a complete executable) that can be dynamically linked to the running kernel. • Device drivers are developed for various hardware such hard disks, network controllers, USB devices, serial devices, display devices, printers
  • 16. Advantages of modules • Modules make it easy to develop drivers without rebooting: load, test, unload, rebuild & again load and so on. • Useful to keep the kernel size to the minimum (essential in embedded systems). Without modules , would need to build monolithic kernel and add new functionality directly into the kernel image. • Also useful to reduce boot time, you don’t need to spend time initializing device that may not be needed at boot time. • Once loaded, modules have full control and privileges in the system. That’s why only the root user can load and unload the modules.