SlideShare a Scribd company logo
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

PDF
Board support package_on_linux
PDF
PDF
Embedded Linux Kernel - Build your custom kernel
PDF
Kernel Module Programming
PDF
Building Embedded Linux Systems Introduction
PDF
A practical guide to buildroot
PDF
Embedded Linux Basics
PPTX
Linux booting process!!
Board support package_on_linux
Embedded Linux Kernel - Build your custom kernel
Kernel Module Programming
Building Embedded Linux Systems Introduction
A practical guide to buildroot
Embedded Linux Basics
Linux booting process!!

What's hot (20)

PPT
Basic Linux Internals
PDF
EB corbos and the L4Re microhypervisor: Open-source automotive safety
PDF
Linux Internals - Part II
PPT
Kernel module programming
PDF
Architecture Of The Linux Kernel
PDF
Embedded Android : System Development - Part II (HAL)
PDF
Embedded Android : System Development - Part II (Linux device drivers)
PDF
Xen in Safety-Critical Systems - Critical Summit 2022
PPTX
Bootloaders (U-Boot)
PPTX
Linux Device Driver’s
PPT
Linux Crash Dump Capture and Analysis
PDF
Architecture Of The Linux Kernel
PDF
Embedded Systems: Lecture 1: Course Overview
PPT
Linux architecture
PPTX
A general Overview of linux !!
PDF
Video Drivers
PDF
Linux OS presentation
PPT
U Boot or Universal Bootloader
PPTX
Android audio system(audioflinger)
PDF
Embedded_Linux_Booting
Basic Linux Internals
EB corbos and the L4Re microhypervisor: Open-source automotive safety
Linux Internals - Part II
Kernel module programming
Architecture Of The Linux Kernel
Embedded Android : System Development - Part II (HAL)
Embedded Android : System Development - Part II (Linux device drivers)
Xen in Safety-Critical Systems - Critical Summit 2022
Bootloaders (U-Boot)
Linux Device Driver’s
Linux Crash Dump Capture and Analysis
Architecture Of The Linux Kernel
Embedded Systems: Lecture 1: Course Overview
Linux architecture
A general Overview of linux !!
Video Drivers
Linux OS presentation
U Boot or Universal Bootloader
Android audio system(audioflinger)
Embedded_Linux_Booting
Ad

Similar to Linux for embedded_systems (20)

PPTX
introduction to Linux operating system .pptx
PPTX
Lect 1_Embedded Linux Embedded RTOS ppt
PPTX
The Linux System
PPTX
Linux Operating System. UOG MARGHAZAR Campus
PPT
operating system ondesktop computer ( laptop)
PDF
Raspberry Pi - Lecture 1 Introduction
PPTX
Network_lecture_for_students_whom_intersted.pptx
PPTX
Embedded linux
PPT
Linux [2005]
PPT
Linux forensics
PPT
Linux basics
PDF
Lecture 1 - introduction OS learner .pdf
PPT
Chapter 6 - INTRODUCTION TO NETWORK OPERATING SYSTEM - 0S and NOS.ppt
PPTX
Operating system 15 micro kernel based os
PPTX
Device Drivers
PPT
RT linux
PDF
unixoperatingsystem-130327073532-phpapp01.pdf
PPT
운영체제론 Ch21
PDF
Regarding About Operating System Structure
introduction to Linux operating system .pptx
Lect 1_Embedded Linux Embedded RTOS ppt
The Linux System
Linux Operating System. UOG MARGHAZAR Campus
operating system ondesktop computer ( laptop)
Raspberry Pi - Lecture 1 Introduction
Network_lecture_for_students_whom_intersted.pptx
Embedded linux
Linux [2005]
Linux forensics
Linux basics
Lecture 1 - introduction OS learner .pdf
Chapter 6 - INTRODUCTION TO NETWORK OPERATING SYSTEM - 0S and NOS.ppt
Operating system 15 micro kernel based os
Device Drivers
RT linux
unixoperatingsystem-130327073532-phpapp01.pdf
운영체제론 Ch21
Regarding About Operating System Structure
Ad

Recently uploaded (20)

PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Approach and Philosophy of On baking technology
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
Spectroscopy.pptx food analysis technology
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Machine learning based COVID-19 study performance prediction
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Programs and apps: productivity, graphics, security and other tools
Chapter 3 Spatial Domain Image Processing.pdf
Per capita expenditure prediction using model stacking based on satellite ima...
Approach and Philosophy of On baking technology
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Building Integrated photovoltaic BIPV_UPV.pdf
Spectroscopy.pptx food analysis technology
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
“AI and Expert System Decision Support & Business Intelligence Systems”
Network Security Unit 5.pdf for BCA BBA.
Encapsulation_ Review paper, used for researhc scholars
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Dropbox Q2 2025 Financial Results & Investor Presentation
Mobile App Security Testing_ A Comprehensive Guide.pdf
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Unlocking AI with Model Context Protocol (MCP)
Machine learning based COVID-19 study performance prediction
Diabetes mellitus diagnosis method based random forest with bat algorithm
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx

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.