SlideShare a Scribd company logo
1 of 10
Download to read offline
International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019
DOI : 10.5121/ijesa.2019.9102 11
Enhanced Embedded Linux Board Support
Package Field Upgrade – A Cost Effective
Approach
Kantam Nagesh1
, Oeyvind Landsnes2
, Tore Fuglestad2
, Nina Svensen2
and Deepak
Singhal1
1
ABB Ability Innovation Center, Robotics and Motion, Bengaluru, India
2
ABB AS, Robotics and Motion, Bryne, Norway
ABSTRACT
Latest technology, new features and kernel bug fixes shows a need to explore a cost-effective and quick
upgradation of Embedded Linux BSP of Embedded Controllers to replace the existing U-Boot, Linux kernel,
Dtb file, and JFFS2 File system. This field upgrade technique is designed to perform an in-the-field flash
upgrade while the Linux is running. On successful build, the current version and platform specific information
will be updated to the script file and further with this technique the file system automates the upgrade
procedure after validating for the version information from the OS-release and if the version is different it will
self-extract and gets installed into the respective partitions. This Embedded Linux BSP field upgrade invention
is more secured and will essentially enable the developers and researchers working in this field to utilize this
method which can prove to be cost-effective on the field and beneficial to the stake holder.
KEYWORDS
Embedded Linux, Upgrade, Kernel, U-boot, JFFS2 File system.
INTRODUCTION
Embedded systems form an essential part of the connected world. 1, 2 BSP (Board Support Package)
is a collection of binary code and supported files which are used to create a Linux kernel firmware
and filesystem images for a particular target. Latest advancements in field upgrade is of prime
importance to enhance the BSP upgradation. Embedded Systems are essentially designed for a
specific task based on its characterization. 1 Building embedded systems, Linux based or otherwise,
involves a lot of effort. The conventional method of updating the configuration or performing
software upgrade of Linux system is a nonsequitur in the embedded space. Many developers use
these cumbersome methods for lack of a better alternative. There is a need to improve the design
and important aspects of the system as its performance, real time constraints, hardware interfaces
and cost. 3
Today the conventional method for Embedded Linux BSP field upgrade is being used globally in
various products which is time consuming and cumbersome. This paper proposes a cost effective
and quicker BSP field upgrade technique for Embedded Linux OS which reduces the technician time
from performing 12 steps used in the conventional method to only 2 steps reducing the time taken
for the upgrade, cost and also the manpower.
International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019
12
Methodology
1. UPDATE TOOLS REQUIRED
• Makeself
• Teraterm
• FTP Server
• FTP Client
• Secured proprietary application / Robot Studio
2. SUPPORT FILES
• u-boot.bin
• uImage
• rootfs.jffs2
• board01.dtb
• 01_uboot.install
• 02_linux.install
3. ADDRESS MAP
Flash to program the Embedded Linux BSP is partitioned as given in Table 1
4. SETTING UP
a. To begin with setting up the system for field upgradation and to see the log messages while
upgrading
International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019
13
Fig 1: Serial and Ethernet Connection diagram between Embedded Linux Controller and Laptop/Desktop
B. SERIAL CONFIGURATION
Fig 2 shows the terminal which should be set up for RS232 communication at 115200 baudrate,
8data bits, no parity, one stop bit, and XON/XOFF flow control.
Fig 2: Serial configuration
C. FLASH ORGANIZATION
Fig 3: Flash Partition table
International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019
14
5. PROCEDURE TO BUILD THE LINUX BSP BINARIES USING BUILDROOT FOR EMBEDDED BOARD
➢ git clone git@xxx.xxx.xxx.xxx:root/xyz.git (from local develop branch)
➢ cd buildroot
➢ git checkout development branch
➢ git pull
➢ make clean
➢ make defconfig
➢ make
Buildroot will generate u-boot.bin, u-boot.bin, uImage, rootfs.jffs2, board01.dtb, 01_uboot.install
and 02_linux.install files in “output/images” folder
Production 01_uboot.install image Production 02_linux.install
6. CONVENTIONAL UPGRADE PATTERNS
PREVIOUS UPGRADE PROCEDURE FOR EMBEDDED LINUX BOARDS WITH NETWORK
a. Using commands in u-boot (Manual)
1) Connect the serial port of the board to serial port of PC
2) Start the tftp server and point the TFTP directory to:
<Release_Name>release Where <Release_Name> is the release to which the BSP
is being upgraded.
3) Start the teraterm application
4) Power on the board
5) Wait for the message “Hit ^C (Control C) to stop autoboot” and press Ctrl+C till
you get the IUP>
6) On getting the IUP> enter the following commands:
7) To set envirnonment variables:
IUP> setenv ethaddr <HW address of the board>
IUP> setenv ipaddr <Required IP address>
IUP> setenv serverip <IP address of PC running TFTP server>
8) To copy rootfs
IUP> tftp xxxxxxxx rootfs.jffs2
IUP> nand erase 0 yyyyyyyy
CRC and MD5 for Integrity Check
Platform Information
Version Information
CRC and MD5 for Integrity Check
Installation Script
Compressed U-Boot.bin
Platform Information
Version Information
Installation Script
Compressed dtb, uImage & jffs2
filesystem images
International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019
15
IUP> nand write.jffs2 xxxxxxxx 0 $filesize
9) To copy kernel image
IUP> tftp xxxxxxxx uImage
IUP> sf erase yyyyyyyy zzzzzzzz
IUP> sf write xxxxxxxx yyyyyyyy $filesize
10) To copy dtb
IUP> tftp xxxxxxxx board.dtb
IUP> sf erase yyyyyyyy zzzzzzzz
IUP> sf write xxxxxxxx yyyyyyyy $filesize
11) To copy u-boot
IUP> sf erase yyyyyyyy zzzzzzzz
IUP> tftp xxxxxxxx u-boot-spi.bin
IUP> sf write xxxxxxxx yyyyyyyy $filesize
12) Reset the board
IUP> reset
13) After this reset the board will boot through to kernel prompt.
14) On bootup, in the kernel prompt, enter the command:
uname –a
The output of the command will contain the Linux version followed by the release
name. eg:
Linux node1 3.18.9-rt4 #1 PREEMPT RT Fri Nov 24 09:44:31 IST 2017 ppc
GNU/Linux
This name should match the release name of the BSP to which the TFTP server
points.
b. Using TTL Scripts in u-boot (Partially automated)
Same way binaries can be upgraded from u-boot prompt and it can be reducible by few steps
but not fully automated. We need have flash related utilities (nand, sf and cp.b) enabled in
u-boot and manual interference is required.
Many developers use these cumbersome methods for lack of a better alternative as they get harder
as the number of devices increase. As this was very time consuming and is a method, which is either
fully manual or partially automated, technique making the product/device work slower and using
more of manpower. Hence there was a need for thorough research on this with many techniques
tested that led to the invention of the below mentioned new technique for field upgradation of the
Embedded Linux BSP (OS system), this reduced the conventional method with 12 or more steps to
only 2 steps proving it to be a very cost-effective, more importantly secured and easy approach
which can be beneficial for the developers, stake holders and customers at large. The process is as
shown below;
International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019
16
7. COST-EFFECTIVE AND QUICKER AUTOMATED UPGRADATION TECHNIQUE
This idea reduces the technician time from 12 or more steps used in the conventional method to only
2 steps in this new approach of field upgrade method.
The Process is as follows;
The Robot Controller board is booted and running with Linux x.xx.xx version, from linux shell it is
fairly easy to upgrade u-boot, dtb and kernel uImage with the help of linux mtd utilities but the same
is not easy for upgrading the filesystem. To initiate the Linux BSP Upgrade process, generate
01_uboot.install and 02_linux.install files. On successful build, the current version and target
platform information will be updated to the script file (which is included in the .install file).
Fig 4: Before upgrade, screenshots of the U-Boot and Linux kernel version
Step1. Copy 01_uboot.install & 02_linux.install files into /home/install/ folder into the Linux
Controller filesystem using tftp/scp/sftp/Secured proprietary application.
e.g., tftp -g -r 02_linux.install <tftp server ip>
Fig 5: After copying files in the filesystem
Step2. On Reboot xxxinstall startup script will look for *.install files and it will validate with the
current platform and version information from os-release file for linux and the version information
from u-boot.bin for uboot and if the version is different it will self-extract and copies all the
required utilities into the shared memory (dev/shm) and it will stop all running processes/services
and gets installed into the respective partitions (u-boot, Linux kernel, DTB and JFFS2 Filesystem)
using mtd utilities. Similarly when version is same or platform is different then installer will show
a message and exit.
Once installation is complete it will delete *.install files and then system reboots automatically with
the newer version.
Fig 6: Below screenshot is while upgrading U-Boot
International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019
17
Fig 7: Below screenshot is while upgrading device tree, kernel and filesystem
Fig 8: After upgrade, screenshots of the U-Boot and Linux kernel version
International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019
18
8. SECURE FLASH PROCESS FLOW DIAGRAM
NO
YES
BAD
GOOD
NO
YES
NO
YES
YES
Fig 9: Secure Flash Process Flow Diagram
Check *.install file is there in
install folder
Validate the install file target platform and
current running platform on Embedded
board.
If (target == current)
(
Validate the install file version and current
running version on board.
If (new version! = current version)
(
*.install file will extract all binaries and copies all the required utilities into the shared
memory and gets installed into the respective partitions and then the system reboots
automatically with the newer version
Verify archive integrity (CRC and
MD5) and uncompressing the BSP
files
Linux is running on version xx.xx on Embedded
Board
International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019
19
9. NOVEL FEATURES OF THIS TECHNIQUE DIFFERENT FROM THE CONVENTIONAL; AUTOMATED
EMBEDDED LINUX BSP UPGRADATION:
1. It allows upgrade of the following components -
• uImage: This is the image of realtime linux kernel.
• u-boot.bin: This is the bootloader binary.
• rootfs.jffs2: This is Linux Root File system image which contains the entire directory
structue alongwith all applications.
• xxxx-01.dtb: The device tree file corresponding to the board.
2. Field upgrade does not need the user to get into the bootloader (u-boot) prompt. It happens on the
kernel prompt through a bash script
3. It automatically reboots the system after the upgrade to boot up with the new binaries.
4. In case of any errors (flash write errors or corrupted binaries), the system can be booted up with
the previous binaries by toggling the bit in /dev/mtdblockX incase sufficient flash(s)/partitions are
available,
Thus this technique proves to be better, more secured and quicker than the conventional method and
can be cost effective on field and beneficial to the customer/stakeholder to enhance the performance
of the Embedded Linux operating controllers.
Technical Feasibility
The invention has been tested on the Embedded Linux operating Robot controllers and here is the
results when it was compared to the conventional upgradation.
Convention upgradation: It took 30-40 minutes (manual interference) for one Embedded Linux
operating controllers to upgrade while Linux is running.
Invention: It takes 3-4 minutes for one Embedded Linux operating controllers to upgrade as it is
fully automated and there is no manual interference and it is secured and is almost 10times faster
and cost-effective using lesser man-hours and manpower. Such technique might be a control unit
firmware update for fixing bugs, improving features.
Security Features
This technique is made secure by accepting only original softwares for embedded system updates,
alteration of data permitted only to authenticated parties and in case of errors while updating, the
validation and verification to be done through digital signatures, certification and cryptography to
maintain the integrity and authenticity.
CONCLUSION
This invention has additional features like validation of the install file target platform and current
running platform on embedded board, verification by conducting CRC and MD5 integrity checks
and installation of all Linux BSP binaries in a completely secure way. This proves to be better, more
secured and quicker than the conventional method, cost effective on the field as it has minimal
manual interference, shorter time and lesser number of steps needed to perform the upgrade,
beneficial to the customer/stakeholder to enhance the performance of the Embedded Linux operating
controllers. In the future use of other encryption methods, digital signatures and authentication can
be recommended to achieve better security in several software modules.
International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019
20
REFERENCES
1 https://www.allegrosoft.com/wp-content/uploads/Secure-Firmware-Updates-Paper.pdf
2 Kumar Eswar, M. Kamaraju, Yadav Kumar Ashok. Porting and BSP Customization of Linux on
ARM Platform. International Journal of Computer Applications, October 2013; 80 (15): 36-42.
3 https://blog.feabhas.com/wp-content/uploads/2014/11/Writing-a-Linux-Update-Mechanism.pdf
4 https://www.xilinx.com/support/documentation/application_notes/xapp1146.pdf
5 https://patents.google.com/scholar/135927621267806534?q=linux&q=BSP&q=upgrade&scholar
6 https://patents.google.com/patent/US5794052A/en?q=linux&q=BSP&q=upgrade&scholar
7 http://www.linuxjournal.com/content/updating-firmware-linux-based-devices
8 http://events.linuxfoundation.org/sites/events/files/slides/linuxcon-japan-2016-softwre-updates-
sangorrin.pdf
9 https://lists.linuxfoundation.org/pipermail/automotive-discussions/2016-May/002061.html
10 https://wiki.openwrt.org/doc/howto/generic.sysupgrade
11 http://www.ti.com/lit/an/slaa682/slaa682.pdf
12 https://www.embedded.com/design/configurable-systems/4008264/Using-software-flashing-to-
secure-embedded-device-updates
13 https://ieeexplore.ieee.org/document/7807959
14 https://www.st.com/content/ccc/resource/sales_and_marketing/presentation/product_presentation/gr
oup0/79/79/81/91/98/19/4e/b2/x-cube-sbsfu_marketing-pres/files/x-cube-sbsfu_marketing-
pres.pdf/jcr:content/translations/en.x-cube-sbsfu_marketing-pres.pdf
15 https://dspace.vsb.cz/bitstream/handle/10084/120984/1858-10404-1-PB.pdf?sequence=1
16 https://ieeexplore.ieee.org/document/7448561
17 http://www.provenrun.com/solutions/secure-firmware-update/
18 https://mkrak.org/2018/01/10/updating-embedded-linux-devices-part1/
19 https://www.timesys.com/security/software-firmware-update-design-considerations/
20 https://jumpnowtek.com/linux/An-upgrade-strategy-for-embedded-Linux-systems.html
21 https://events.static.linuxfound.org/sites/events/files/slides/elc16_angelatos.pdf

More Related Content

What's hot

Unix Internals OS Architecture
Unix Internals OS ArchitectureUnix Internals OS Architecture
Unix Internals OS ArchitectureKhader Shaik
 
Kernel module programming
Kernel module programmingKernel module programming
Kernel module programmingVandana Salve
 
Computer system architecture
Computer system architectureComputer system architecture
Computer system architecturejeetesh036
 
Installing driver
Installing driverInstalling driver
Installing driverOnline
 
Device Driver in WinCE 6.0 R2
Device Driver in WinCE 6.0 R2Device Driver in WinCE 6.0 R2
Device Driver in WinCE 6.0 R2rahul_p_shukla
 
Introduction to embedded linux device driver and firmware
Introduction to embedded linux device driver and firmwareIntroduction to embedded linux device driver and firmware
Introduction to embedded linux device driver and firmwaredefinecareer
 
linux device driver
linux device driverlinux device driver
linux device driverRahul Batra
 
Course 102: Lecture 25: Devices and Device Drivers
Course 102: Lecture 25: Devices and Device Drivers Course 102: Lecture 25: Devices and Device Drivers
Course 102: Lecture 25: Devices and Device Drivers Ahmed El-Arabawy
 
Introduction to char device driver
Introduction to char device driverIntroduction to char device driver
Introduction to char device driverVandana Salve
 
Operating Systems 1 (2/12) - Hardware Basics
Operating Systems 1 (2/12) - Hardware BasicsOperating Systems 1 (2/12) - Hardware Basics
Operating Systems 1 (2/12) - Hardware BasicsPeter Tröger
 

What's hot (20)

9781111306366 ppt ch11
9781111306366 ppt ch119781111306366 ppt ch11
9781111306366 ppt ch11
 
Unix Internals OS Architecture
Unix Internals OS ArchitectureUnix Internals OS Architecture
Unix Internals OS Architecture
 
Kernel module programming
Kernel module programmingKernel module programming
Kernel module programming
 
Computer system architecture
Computer system architectureComputer system architecture
Computer system architecture
 
Installing driver
Installing driverInstalling driver
Installing driver
 
CS6401 Operating Systems
CS6401 Operating SystemsCS6401 Operating Systems
CS6401 Operating Systems
 
Cs8493 unit 5
Cs8493 unit 5Cs8493 unit 5
Cs8493 unit 5
 
Device Drivers
Device DriversDevice Drivers
Device Drivers
 
Device Driver in WinCE 6.0 R2
Device Driver in WinCE 6.0 R2Device Driver in WinCE 6.0 R2
Device Driver in WinCE 6.0 R2
 
9781111306366 ppt ch4
9781111306366 ppt ch49781111306366 ppt ch4
9781111306366 ppt ch4
 
Introduction to embedded linux device driver and firmware
Introduction to embedded linux device driver and firmwareIntroduction to embedded linux device driver and firmware
Introduction to embedded linux device driver and firmware
 
Embedded Linux
Embedded LinuxEmbedded Linux
Embedded Linux
 
Os
OsOs
Os
 
linux device driver
linux device driverlinux device driver
linux device driver
 
9781111306366 ppt ch5
9781111306366 ppt ch59781111306366 ppt ch5
9781111306366 ppt ch5
 
02.Os Structure
02.Os Structure02.Os Structure
02.Os Structure
 
Course 102: Lecture 25: Devices and Device Drivers
Course 102: Lecture 25: Devices and Device Drivers Course 102: Lecture 25: Devices and Device Drivers
Course 102: Lecture 25: Devices and Device Drivers
 
Introduction to char device driver
Introduction to char device driverIntroduction to char device driver
Introduction to char device driver
 
9781111306366 ppt ch6
9781111306366 ppt ch69781111306366 ppt ch6
9781111306366 ppt ch6
 
Operating Systems 1 (2/12) - Hardware Basics
Operating Systems 1 (2/12) - Hardware BasicsOperating Systems 1 (2/12) - Hardware Basics
Operating Systems 1 (2/12) - Hardware Basics
 

Similar to Enhanced Embedded Linux Board Support Package Field Upgrade – A Cost Effective Approach

A framework for optimization of the boot time on embedded linux environment w...
A framework for optimization of the boot time on embedded linux environment w...A framework for optimization of the boot time on embedded linux environment w...
A framework for optimization of the boot time on embedded linux environment w...BouchraBourass
 
Linux-Based Data Acquisition and Processing On Palmtop Computer
Linux-Based Data Acquisition and Processing On Palmtop ComputerLinux-Based Data Acquisition and Processing On Palmtop Computer
Linux-Based Data Acquisition and Processing On Palmtop ComputerIOSR Journals
 
Linux-Based Data Acquisition and Processing On Palmtop Computer
Linux-Based Data Acquisition and Processing On Palmtop ComputerLinux-Based Data Acquisition and Processing On Palmtop Computer
Linux-Based Data Acquisition and Processing On Palmtop ComputerIOSR Journals
 
Bsp customization and porting of linux on arm cortex based i.mx6 processor wi...
Bsp customization and porting of linux on arm cortex based i.mx6 processor wi...Bsp customization and porting of linux on arm cortex based i.mx6 processor wi...
Bsp customization and porting of linux on arm cortex based i.mx6 processor wi...eSAT Publishing House
 
IRJET - Development of Embedded Linux System from Bare Board
IRJET - Development of Embedded Linux System from Bare BoardIRJET - Development of Embedded Linux System from Bare Board
IRJET - Development of Embedded Linux System from Bare BoardIRJET Journal
 
Upgrade to IBM z/OS V2.5 technical actions
Upgrade to IBM z/OS V2.5 technical actionsUpgrade to IBM z/OS V2.5 technical actions
Upgrade to IBM z/OS V2.5 technical actionsMarna Walle
 
IT Essentials (Version 7.0) - ITE Chapter 10 Exam Answers
IT Essentials (Version 7.0) - ITE Chapter 10 Exam AnswersIT Essentials (Version 7.0) - ITE Chapter 10 Exam Answers
IT Essentials (Version 7.0) - ITE Chapter 10 Exam AnswersITExamAnswers.net
 
exp_1_20bca1108(kashish_dixit.docx
exp_1_20bca1108(kashish_dixit.docxexp_1_20bca1108(kashish_dixit.docx
exp_1_20bca1108(kashish_dixit.docxApkaAmitbro
 
Centralized Fog Server with OpenLDAP
Centralized Fog Server with OpenLDAP Centralized Fog Server with OpenLDAP
Centralized Fog Server with OpenLDAP tare
 
Ap 06 4_10_simek
Ap 06 4_10_simekAp 06 4_10_simek
Ap 06 4_10_simekNguyen Vinh
 
Software Update Mechanisms: Selecting the Best Solutin for Your Embedded Linu...
Software Update Mechanisms: Selecting the Best Solutin for Your Embedded Linu...Software Update Mechanisms: Selecting the Best Solutin for Your Embedded Linu...
Software Update Mechanisms: Selecting the Best Solutin for Your Embedded Linu...ICS
 
It04 roshan basnet
It04 roshan basnetIt04 roshan basnet
It04 roshan basnetrosu555
 
Inptools Manual
Inptools ManualInptools Manual
Inptools ManualMawar 99
 
exp_1_20bca1066 Internet.docx
exp_1_20bca1066 Internet.docxexp_1_20bca1066 Internet.docx
exp_1_20bca1066 Internet.docxApkaAmitbro
 
2012 a deployment pipeline for infrastructure a dev ops case study at nbn _ ...
2012 a deployment pipeline for infrastructure  a dev ops case study at nbn _ ...2012 a deployment pipeline for infrastructure  a dev ops case study at nbn _ ...
2012 a deployment pipeline for infrastructure a dev ops case study at nbn _ ...sauravs007
 
Civil Infrastructure Platform: Industrial Grade SLTS Kernel and Base-layer De...
Civil Infrastructure Platform: Industrial Grade SLTS Kernel and Base-layer De...Civil Infrastructure Platform: Industrial Grade SLTS Kernel and Base-layer De...
Civil Infrastructure Platform: Industrial Grade SLTS Kernel and Base-layer De...Yoshitake Kobayashi
 

Similar to Enhanced Embedded Linux Board Support Package Field Upgrade – A Cost Effective Approach (20)

A framework for optimization of the boot time on embedded linux environment w...
A framework for optimization of the boot time on embedded linux environment w...A framework for optimization of the boot time on embedded linux environment w...
A framework for optimization of the boot time on embedded linux environment w...
 
All in one
All in oneAll in one
All in one
 
Linux-Based Data Acquisition and Processing On Palmtop Computer
Linux-Based Data Acquisition and Processing On Palmtop ComputerLinux-Based Data Acquisition and Processing On Palmtop Computer
Linux-Based Data Acquisition and Processing On Palmtop Computer
 
Linux-Based Data Acquisition and Processing On Palmtop Computer
Linux-Based Data Acquisition and Processing On Palmtop ComputerLinux-Based Data Acquisition and Processing On Palmtop Computer
Linux-Based Data Acquisition and Processing On Palmtop Computer
 
Bsp customization and porting of linux on arm cortex based i.mx6 processor wi...
Bsp customization and porting of linux on arm cortex based i.mx6 processor wi...Bsp customization and porting of linux on arm cortex based i.mx6 processor wi...
Bsp customization and porting of linux on arm cortex based i.mx6 processor wi...
 
Howto Pxeboot
Howto PxebootHowto Pxeboot
Howto Pxeboot
 
IRJET - Development of Embedded Linux System from Bare Board
IRJET - Development of Embedded Linux System from Bare BoardIRJET - Development of Embedded Linux System from Bare Board
IRJET - Development of Embedded Linux System from Bare Board
 
Upgrade to IBM z/OS V2.5 technical actions
Upgrade to IBM z/OS V2.5 technical actionsUpgrade to IBM z/OS V2.5 technical actions
Upgrade to IBM z/OS V2.5 technical actions
 
IT Essentials (Version 7.0) - ITE Chapter 10 Exam Answers
IT Essentials (Version 7.0) - ITE Chapter 10 Exam AnswersIT Essentials (Version 7.0) - ITE Chapter 10 Exam Answers
IT Essentials (Version 7.0) - ITE Chapter 10 Exam Answers
 
Fedora15 lovelock-pres
Fedora15 lovelock-presFedora15 lovelock-pres
Fedora15 lovelock-pres
 
exp_1_20bca1108(kashish_dixit.docx
exp_1_20bca1108(kashish_dixit.docxexp_1_20bca1108(kashish_dixit.docx
exp_1_20bca1108(kashish_dixit.docx
 
Centralized Fog Server with OpenLDAP
Centralized Fog Server with OpenLDAP Centralized Fog Server with OpenLDAP
Centralized Fog Server with OpenLDAP
 
Ap 06 4_10_simek
Ap 06 4_10_simekAp 06 4_10_simek
Ap 06 4_10_simek
 
Software Update Mechanisms: Selecting the Best Solutin for Your Embedded Linu...
Software Update Mechanisms: Selecting the Best Solutin for Your Embedded Linu...Software Update Mechanisms: Selecting the Best Solutin for Your Embedded Linu...
Software Update Mechanisms: Selecting the Best Solutin for Your Embedded Linu...
 
Slim Server Theory
Slim Server TheorySlim Server Theory
Slim Server Theory
 
It04 roshan basnet
It04 roshan basnetIt04 roshan basnet
It04 roshan basnet
 
Inptools Manual
Inptools ManualInptools Manual
Inptools Manual
 
exp_1_20bca1066 Internet.docx
exp_1_20bca1066 Internet.docxexp_1_20bca1066 Internet.docx
exp_1_20bca1066 Internet.docx
 
2012 a deployment pipeline for infrastructure a dev ops case study at nbn _ ...
2012 a deployment pipeline for infrastructure  a dev ops case study at nbn _ ...2012 a deployment pipeline for infrastructure  a dev ops case study at nbn _ ...
2012 a deployment pipeline for infrastructure a dev ops case study at nbn _ ...
 
Civil Infrastructure Platform: Industrial Grade SLTS Kernel and Base-layer De...
Civil Infrastructure Platform: Industrial Grade SLTS Kernel and Base-layer De...Civil Infrastructure Platform: Industrial Grade SLTS Kernel and Base-layer De...
Civil Infrastructure Platform: Industrial Grade SLTS Kernel and Base-layer De...
 

More from ijesajournal

DESIGN OF AN EMBEDDED SYSTEM: BEDSIDE PATIENT MONITOR
DESIGN OF AN EMBEDDED SYSTEM: BEDSIDE PATIENT MONITORDESIGN OF AN EMBEDDED SYSTEM: BEDSIDE PATIENT MONITOR
DESIGN OF AN EMBEDDED SYSTEM: BEDSIDE PATIENT MONITORijesajournal
 
DESIGN OF AN EMBEDDED SYSTEM: BEDSIDE PATIENT MONITOR
DESIGN OF AN EMBEDDED SYSTEM: BEDSIDE PATIENT MONITORDESIGN OF AN EMBEDDED SYSTEM: BEDSIDE PATIENT MONITOR
DESIGN OF AN EMBEDDED SYSTEM: BEDSIDE PATIENT MONITORijesajournal
 
PIP-MPU: FORMAL VERIFICATION OF AN MPUBASED SEPARATION KERNEL FOR CONSTRAINED...
PIP-MPU: FORMAL VERIFICATION OF AN MPUBASED SEPARATION KERNEL FOR CONSTRAINED...PIP-MPU: FORMAL VERIFICATION OF AN MPUBASED SEPARATION KERNEL FOR CONSTRAINED...
PIP-MPU: FORMAL VERIFICATION OF AN MPUBASED SEPARATION KERNEL FOR CONSTRAINED...ijesajournal
 
International Journal of Embedded Systems and Applications (IJESA)
International Journal of Embedded Systems and Applications (IJESA)International Journal of Embedded Systems and Applications (IJESA)
International Journal of Embedded Systems and Applications (IJESA)ijesajournal
 
Pip-MPU: Formal Verification of an MPU-Based Separationkernel for Constrained...
Pip-MPU: Formal Verification of an MPU-Based Separationkernel for Constrained...Pip-MPU: Formal Verification of an MPU-Based Separationkernel for Constrained...
Pip-MPU: Formal Verification of an MPU-Based Separationkernel for Constrained...ijesajournal
 
International Journal of Embedded Systems and Applications (IJESA)
International Journal of Embedded Systems and Applications (IJESA)International Journal of Embedded Systems and Applications (IJESA)
International Journal of Embedded Systems and Applications (IJESA)ijesajournal
 
Call for papers -15th International Conference on Wireless & Mobile Network (...
Call for papers -15th International Conference on Wireless & Mobile Network (...Call for papers -15th International Conference on Wireless & Mobile Network (...
Call for papers -15th International Conference on Wireless & Mobile Network (...ijesajournal
 
Call for Papers -International Conference on NLP & Signal (NLPSIG 2023)
Call for Papers -International Conference on NLP & Signal (NLPSIG 2023)Call for Papers -International Conference on NLP & Signal (NLPSIG 2023)
Call for Papers -International Conference on NLP & Signal (NLPSIG 2023)ijesajournal
 
International Conference on NLP & Signal (NLPSIG 2023)
International Conference on NLP & Signal (NLPSIG 2023)International Conference on NLP & Signal (NLPSIG 2023)
International Conference on NLP & Signal (NLPSIG 2023)ijesajournal
 
11th International Conference on Software Engineering & Trends (SE 2023)
11th International Conference on Software Engineering & Trends (SE 2023)11th International Conference on Software Engineering & Trends (SE 2023)
11th International Conference on Software Engineering & Trends (SE 2023)ijesajournal
 
11th International Conference on Software Engineering & Trends (SE 2023)
11th International Conference on Software Engineering & Trends (SE 2023)11th International Conference on Software Engineering & Trends (SE 2023)
11th International Conference on Software Engineering & Trends (SE 2023)ijesajournal
 
PERFORMING AN EXPERIMENTAL PLATFORM TO OPTIMIZE DATA MULTIPLEXING
PERFORMING AN EXPERIMENTAL PLATFORM TO OPTIMIZE DATA MULTIPLEXINGPERFORMING AN EXPERIMENTAL PLATFORM TO OPTIMIZE DATA MULTIPLEXING
PERFORMING AN EXPERIMENTAL PLATFORM TO OPTIMIZE DATA MULTIPLEXINGijesajournal
 
GENERIC SOPC PLATFORM FOR VIDEO INTERACTIVE SYSTEM WITH MPMC CONTROLLER
GENERIC SOPC PLATFORM FOR VIDEO INTERACTIVE SYSTEM WITH MPMC CONTROLLERGENERIC SOPC PLATFORM FOR VIDEO INTERACTIVE SYSTEM WITH MPMC CONTROLLER
GENERIC SOPC PLATFORM FOR VIDEO INTERACTIVE SYSTEM WITH MPMC CONTROLLERijesajournal
 
INVERTING BUCK-BOOST DCDC CONVERTER DESIGN CHALLENGES
INVERTING BUCK-BOOST DCDC CONVERTER DESIGN CHALLENGESINVERTING BUCK-BOOST DCDC CONVERTER DESIGN CHALLENGES
INVERTING BUCK-BOOST DCDC CONVERTER DESIGN CHALLENGESijesajournal
 
A Case Study: Task Scheduling Methodologies for High Speed Computing Systems
A Case Study: Task Scheduling Methodologies for High Speed Computing Systems A Case Study: Task Scheduling Methodologies for High Speed Computing Systems
A Case Study: Task Scheduling Methodologies for High Speed Computing Systems ijesajournal
 
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...ijesajournal
 
AUTOMATED EMBEDDED PAYMENT SYSTEMS
AUTOMATED EMBEDDED PAYMENT SYSTEMSAUTOMATED EMBEDDED PAYMENT SYSTEMS
AUTOMATED EMBEDDED PAYMENT SYSTEMSijesajournal
 
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...ijesajournal
 
2 nd International Conference on Computing and Information Technology
2 nd International Conference on Computing and Information Technology 2 nd International Conference on Computing and Information Technology
2 nd International Conference on Computing and Information Technology ijesajournal
 
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...ijesajournal
 

More from ijesajournal (20)

DESIGN OF AN EMBEDDED SYSTEM: BEDSIDE PATIENT MONITOR
DESIGN OF AN EMBEDDED SYSTEM: BEDSIDE PATIENT MONITORDESIGN OF AN EMBEDDED SYSTEM: BEDSIDE PATIENT MONITOR
DESIGN OF AN EMBEDDED SYSTEM: BEDSIDE PATIENT MONITOR
 
DESIGN OF AN EMBEDDED SYSTEM: BEDSIDE PATIENT MONITOR
DESIGN OF AN EMBEDDED SYSTEM: BEDSIDE PATIENT MONITORDESIGN OF AN EMBEDDED SYSTEM: BEDSIDE PATIENT MONITOR
DESIGN OF AN EMBEDDED SYSTEM: BEDSIDE PATIENT MONITOR
 
PIP-MPU: FORMAL VERIFICATION OF AN MPUBASED SEPARATION KERNEL FOR CONSTRAINED...
PIP-MPU: FORMAL VERIFICATION OF AN MPUBASED SEPARATION KERNEL FOR CONSTRAINED...PIP-MPU: FORMAL VERIFICATION OF AN MPUBASED SEPARATION KERNEL FOR CONSTRAINED...
PIP-MPU: FORMAL VERIFICATION OF AN MPUBASED SEPARATION KERNEL FOR CONSTRAINED...
 
International Journal of Embedded Systems and Applications (IJESA)
International Journal of Embedded Systems and Applications (IJESA)International Journal of Embedded Systems and Applications (IJESA)
International Journal of Embedded Systems and Applications (IJESA)
 
Pip-MPU: Formal Verification of an MPU-Based Separationkernel for Constrained...
Pip-MPU: Formal Verification of an MPU-Based Separationkernel for Constrained...Pip-MPU: Formal Verification of an MPU-Based Separationkernel for Constrained...
Pip-MPU: Formal Verification of an MPU-Based Separationkernel for Constrained...
 
International Journal of Embedded Systems and Applications (IJESA)
International Journal of Embedded Systems and Applications (IJESA)International Journal of Embedded Systems and Applications (IJESA)
International Journal of Embedded Systems and Applications (IJESA)
 
Call for papers -15th International Conference on Wireless & Mobile Network (...
Call for papers -15th International Conference on Wireless & Mobile Network (...Call for papers -15th International Conference on Wireless & Mobile Network (...
Call for papers -15th International Conference on Wireless & Mobile Network (...
 
Call for Papers -International Conference on NLP & Signal (NLPSIG 2023)
Call for Papers -International Conference on NLP & Signal (NLPSIG 2023)Call for Papers -International Conference on NLP & Signal (NLPSIG 2023)
Call for Papers -International Conference on NLP & Signal (NLPSIG 2023)
 
International Conference on NLP & Signal (NLPSIG 2023)
International Conference on NLP & Signal (NLPSIG 2023)International Conference on NLP & Signal (NLPSIG 2023)
International Conference on NLP & Signal (NLPSIG 2023)
 
11th International Conference on Software Engineering & Trends (SE 2023)
11th International Conference on Software Engineering & Trends (SE 2023)11th International Conference on Software Engineering & Trends (SE 2023)
11th International Conference on Software Engineering & Trends (SE 2023)
 
11th International Conference on Software Engineering & Trends (SE 2023)
11th International Conference on Software Engineering & Trends (SE 2023)11th International Conference on Software Engineering & Trends (SE 2023)
11th International Conference on Software Engineering & Trends (SE 2023)
 
PERFORMING AN EXPERIMENTAL PLATFORM TO OPTIMIZE DATA MULTIPLEXING
PERFORMING AN EXPERIMENTAL PLATFORM TO OPTIMIZE DATA MULTIPLEXINGPERFORMING AN EXPERIMENTAL PLATFORM TO OPTIMIZE DATA MULTIPLEXING
PERFORMING AN EXPERIMENTAL PLATFORM TO OPTIMIZE DATA MULTIPLEXING
 
GENERIC SOPC PLATFORM FOR VIDEO INTERACTIVE SYSTEM WITH MPMC CONTROLLER
GENERIC SOPC PLATFORM FOR VIDEO INTERACTIVE SYSTEM WITH MPMC CONTROLLERGENERIC SOPC PLATFORM FOR VIDEO INTERACTIVE SYSTEM WITH MPMC CONTROLLER
GENERIC SOPC PLATFORM FOR VIDEO INTERACTIVE SYSTEM WITH MPMC CONTROLLER
 
INVERTING BUCK-BOOST DCDC CONVERTER DESIGN CHALLENGES
INVERTING BUCK-BOOST DCDC CONVERTER DESIGN CHALLENGESINVERTING BUCK-BOOST DCDC CONVERTER DESIGN CHALLENGES
INVERTING BUCK-BOOST DCDC CONVERTER DESIGN CHALLENGES
 
A Case Study: Task Scheduling Methodologies for High Speed Computing Systems
A Case Study: Task Scheduling Methodologies for High Speed Computing Systems A Case Study: Task Scheduling Methodologies for High Speed Computing Systems
A Case Study: Task Scheduling Methodologies for High Speed Computing Systems
 
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
 
AUTOMATED EMBEDDED PAYMENT SYSTEMS
AUTOMATED EMBEDDED PAYMENT SYSTEMSAUTOMATED EMBEDDED PAYMENT SYSTEMS
AUTOMATED EMBEDDED PAYMENT SYSTEMS
 
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
 
2 nd International Conference on Computing and Information Technology
2 nd International Conference on Computing and Information Technology 2 nd International Conference on Computing and Information Technology
2 nd International Conference on Computing and Information Technology
 
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
 

Recently uploaded

Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdfankushspencer015
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...ranjana rawat
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 

Recently uploaded (20)

Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
The Most Attractive Pune Call Girls Manchar 8250192130 Will You Miss This Cha...
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 

Enhanced Embedded Linux Board Support Package Field Upgrade – A Cost Effective Approach

  • 1. International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019 DOI : 10.5121/ijesa.2019.9102 11 Enhanced Embedded Linux Board Support Package Field Upgrade – A Cost Effective Approach Kantam Nagesh1 , Oeyvind Landsnes2 , Tore Fuglestad2 , Nina Svensen2 and Deepak Singhal1 1 ABB Ability Innovation Center, Robotics and Motion, Bengaluru, India 2 ABB AS, Robotics and Motion, Bryne, Norway ABSTRACT Latest technology, new features and kernel bug fixes shows a need to explore a cost-effective and quick upgradation of Embedded Linux BSP of Embedded Controllers to replace the existing U-Boot, Linux kernel, Dtb file, and JFFS2 File system. This field upgrade technique is designed to perform an in-the-field flash upgrade while the Linux is running. On successful build, the current version and platform specific information will be updated to the script file and further with this technique the file system automates the upgrade procedure after validating for the version information from the OS-release and if the version is different it will self-extract and gets installed into the respective partitions. This Embedded Linux BSP field upgrade invention is more secured and will essentially enable the developers and researchers working in this field to utilize this method which can prove to be cost-effective on the field and beneficial to the stake holder. KEYWORDS Embedded Linux, Upgrade, Kernel, U-boot, JFFS2 File system. INTRODUCTION Embedded systems form an essential part of the connected world. 1, 2 BSP (Board Support Package) is a collection of binary code and supported files which are used to create a Linux kernel firmware and filesystem images for a particular target. Latest advancements in field upgrade is of prime importance to enhance the BSP upgradation. Embedded Systems are essentially designed for a specific task based on its characterization. 1 Building embedded systems, Linux based or otherwise, involves a lot of effort. The conventional method of updating the configuration or performing software upgrade of Linux system is a nonsequitur in the embedded space. Many developers use these cumbersome methods for lack of a better alternative. There is a need to improve the design and important aspects of the system as its performance, real time constraints, hardware interfaces and cost. 3 Today the conventional method for Embedded Linux BSP field upgrade is being used globally in various products which is time consuming and cumbersome. This paper proposes a cost effective and quicker BSP field upgrade technique for Embedded Linux OS which reduces the technician time from performing 12 steps used in the conventional method to only 2 steps reducing the time taken for the upgrade, cost and also the manpower.
  • 2. International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019 12 Methodology 1. UPDATE TOOLS REQUIRED • Makeself • Teraterm • FTP Server • FTP Client • Secured proprietary application / Robot Studio 2. SUPPORT FILES • u-boot.bin • uImage • rootfs.jffs2 • board01.dtb • 01_uboot.install • 02_linux.install 3. ADDRESS MAP Flash to program the Embedded Linux BSP is partitioned as given in Table 1 4. SETTING UP a. To begin with setting up the system for field upgradation and to see the log messages while upgrading
  • 3. International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019 13 Fig 1: Serial and Ethernet Connection diagram between Embedded Linux Controller and Laptop/Desktop B. SERIAL CONFIGURATION Fig 2 shows the terminal which should be set up for RS232 communication at 115200 baudrate, 8data bits, no parity, one stop bit, and XON/XOFF flow control. Fig 2: Serial configuration C. FLASH ORGANIZATION Fig 3: Flash Partition table
  • 4. International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019 14 5. PROCEDURE TO BUILD THE LINUX BSP BINARIES USING BUILDROOT FOR EMBEDDED BOARD ➢ git clone git@xxx.xxx.xxx.xxx:root/xyz.git (from local develop branch) ➢ cd buildroot ➢ git checkout development branch ➢ git pull ➢ make clean ➢ make defconfig ➢ make Buildroot will generate u-boot.bin, u-boot.bin, uImage, rootfs.jffs2, board01.dtb, 01_uboot.install and 02_linux.install files in “output/images” folder Production 01_uboot.install image Production 02_linux.install 6. CONVENTIONAL UPGRADE PATTERNS PREVIOUS UPGRADE PROCEDURE FOR EMBEDDED LINUX BOARDS WITH NETWORK a. Using commands in u-boot (Manual) 1) Connect the serial port of the board to serial port of PC 2) Start the tftp server and point the TFTP directory to: <Release_Name>release Where <Release_Name> is the release to which the BSP is being upgraded. 3) Start the teraterm application 4) Power on the board 5) Wait for the message “Hit ^C (Control C) to stop autoboot” and press Ctrl+C till you get the IUP> 6) On getting the IUP> enter the following commands: 7) To set envirnonment variables: IUP> setenv ethaddr <HW address of the board> IUP> setenv ipaddr <Required IP address> IUP> setenv serverip <IP address of PC running TFTP server> 8) To copy rootfs IUP> tftp xxxxxxxx rootfs.jffs2 IUP> nand erase 0 yyyyyyyy CRC and MD5 for Integrity Check Platform Information Version Information CRC and MD5 for Integrity Check Installation Script Compressed U-Boot.bin Platform Information Version Information Installation Script Compressed dtb, uImage & jffs2 filesystem images
  • 5. International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019 15 IUP> nand write.jffs2 xxxxxxxx 0 $filesize 9) To copy kernel image IUP> tftp xxxxxxxx uImage IUP> sf erase yyyyyyyy zzzzzzzz IUP> sf write xxxxxxxx yyyyyyyy $filesize 10) To copy dtb IUP> tftp xxxxxxxx board.dtb IUP> sf erase yyyyyyyy zzzzzzzz IUP> sf write xxxxxxxx yyyyyyyy $filesize 11) To copy u-boot IUP> sf erase yyyyyyyy zzzzzzzz IUP> tftp xxxxxxxx u-boot-spi.bin IUP> sf write xxxxxxxx yyyyyyyy $filesize 12) Reset the board IUP> reset 13) After this reset the board will boot through to kernel prompt. 14) On bootup, in the kernel prompt, enter the command: uname –a The output of the command will contain the Linux version followed by the release name. eg: Linux node1 3.18.9-rt4 #1 PREEMPT RT Fri Nov 24 09:44:31 IST 2017 ppc GNU/Linux This name should match the release name of the BSP to which the TFTP server points. b. Using TTL Scripts in u-boot (Partially automated) Same way binaries can be upgraded from u-boot prompt and it can be reducible by few steps but not fully automated. We need have flash related utilities (nand, sf and cp.b) enabled in u-boot and manual interference is required. Many developers use these cumbersome methods for lack of a better alternative as they get harder as the number of devices increase. As this was very time consuming and is a method, which is either fully manual or partially automated, technique making the product/device work slower and using more of manpower. Hence there was a need for thorough research on this with many techniques tested that led to the invention of the below mentioned new technique for field upgradation of the Embedded Linux BSP (OS system), this reduced the conventional method with 12 or more steps to only 2 steps proving it to be a very cost-effective, more importantly secured and easy approach which can be beneficial for the developers, stake holders and customers at large. The process is as shown below;
  • 6. International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019 16 7. COST-EFFECTIVE AND QUICKER AUTOMATED UPGRADATION TECHNIQUE This idea reduces the technician time from 12 or more steps used in the conventional method to only 2 steps in this new approach of field upgrade method. The Process is as follows; The Robot Controller board is booted and running with Linux x.xx.xx version, from linux shell it is fairly easy to upgrade u-boot, dtb and kernel uImage with the help of linux mtd utilities but the same is not easy for upgrading the filesystem. To initiate the Linux BSP Upgrade process, generate 01_uboot.install and 02_linux.install files. On successful build, the current version and target platform information will be updated to the script file (which is included in the .install file). Fig 4: Before upgrade, screenshots of the U-Boot and Linux kernel version Step1. Copy 01_uboot.install & 02_linux.install files into /home/install/ folder into the Linux Controller filesystem using tftp/scp/sftp/Secured proprietary application. e.g., tftp -g -r 02_linux.install <tftp server ip> Fig 5: After copying files in the filesystem Step2. On Reboot xxxinstall startup script will look for *.install files and it will validate with the current platform and version information from os-release file for linux and the version information from u-boot.bin for uboot and if the version is different it will self-extract and copies all the required utilities into the shared memory (dev/shm) and it will stop all running processes/services and gets installed into the respective partitions (u-boot, Linux kernel, DTB and JFFS2 Filesystem) using mtd utilities. Similarly when version is same or platform is different then installer will show a message and exit. Once installation is complete it will delete *.install files and then system reboots automatically with the newer version. Fig 6: Below screenshot is while upgrading U-Boot
  • 7. International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019 17 Fig 7: Below screenshot is while upgrading device tree, kernel and filesystem Fig 8: After upgrade, screenshots of the U-Boot and Linux kernel version
  • 8. International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019 18 8. SECURE FLASH PROCESS FLOW DIAGRAM NO YES BAD GOOD NO YES NO YES YES Fig 9: Secure Flash Process Flow Diagram Check *.install file is there in install folder Validate the install file target platform and current running platform on Embedded board. If (target == current) ( Validate the install file version and current running version on board. If (new version! = current version) ( *.install file will extract all binaries and copies all the required utilities into the shared memory and gets installed into the respective partitions and then the system reboots automatically with the newer version Verify archive integrity (CRC and MD5) and uncompressing the BSP files Linux is running on version xx.xx on Embedded Board
  • 9. International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019 19 9. NOVEL FEATURES OF THIS TECHNIQUE DIFFERENT FROM THE CONVENTIONAL; AUTOMATED EMBEDDED LINUX BSP UPGRADATION: 1. It allows upgrade of the following components - • uImage: This is the image of realtime linux kernel. • u-boot.bin: This is the bootloader binary. • rootfs.jffs2: This is Linux Root File system image which contains the entire directory structue alongwith all applications. • xxxx-01.dtb: The device tree file corresponding to the board. 2. Field upgrade does not need the user to get into the bootloader (u-boot) prompt. It happens on the kernel prompt through a bash script 3. It automatically reboots the system after the upgrade to boot up with the new binaries. 4. In case of any errors (flash write errors or corrupted binaries), the system can be booted up with the previous binaries by toggling the bit in /dev/mtdblockX incase sufficient flash(s)/partitions are available, Thus this technique proves to be better, more secured and quicker than the conventional method and can be cost effective on field and beneficial to the customer/stakeholder to enhance the performance of the Embedded Linux operating controllers. Technical Feasibility The invention has been tested on the Embedded Linux operating Robot controllers and here is the results when it was compared to the conventional upgradation. Convention upgradation: It took 30-40 minutes (manual interference) for one Embedded Linux operating controllers to upgrade while Linux is running. Invention: It takes 3-4 minutes for one Embedded Linux operating controllers to upgrade as it is fully automated and there is no manual interference and it is secured and is almost 10times faster and cost-effective using lesser man-hours and manpower. Such technique might be a control unit firmware update for fixing bugs, improving features. Security Features This technique is made secure by accepting only original softwares for embedded system updates, alteration of data permitted only to authenticated parties and in case of errors while updating, the validation and verification to be done through digital signatures, certification and cryptography to maintain the integrity and authenticity. CONCLUSION This invention has additional features like validation of the install file target platform and current running platform on embedded board, verification by conducting CRC and MD5 integrity checks and installation of all Linux BSP binaries in a completely secure way. This proves to be better, more secured and quicker than the conventional method, cost effective on the field as it has minimal manual interference, shorter time and lesser number of steps needed to perform the upgrade, beneficial to the customer/stakeholder to enhance the performance of the Embedded Linux operating controllers. In the future use of other encryption methods, digital signatures and authentication can be recommended to achieve better security in several software modules.
  • 10. International Journal of Embedded Systems and Applications (IJESA), Vol 9, No.1, March 2019 20 REFERENCES 1 https://www.allegrosoft.com/wp-content/uploads/Secure-Firmware-Updates-Paper.pdf 2 Kumar Eswar, M. Kamaraju, Yadav Kumar Ashok. Porting and BSP Customization of Linux on ARM Platform. International Journal of Computer Applications, October 2013; 80 (15): 36-42. 3 https://blog.feabhas.com/wp-content/uploads/2014/11/Writing-a-Linux-Update-Mechanism.pdf 4 https://www.xilinx.com/support/documentation/application_notes/xapp1146.pdf 5 https://patents.google.com/scholar/135927621267806534?q=linux&q=BSP&q=upgrade&scholar 6 https://patents.google.com/patent/US5794052A/en?q=linux&q=BSP&q=upgrade&scholar 7 http://www.linuxjournal.com/content/updating-firmware-linux-based-devices 8 http://events.linuxfoundation.org/sites/events/files/slides/linuxcon-japan-2016-softwre-updates- sangorrin.pdf 9 https://lists.linuxfoundation.org/pipermail/automotive-discussions/2016-May/002061.html 10 https://wiki.openwrt.org/doc/howto/generic.sysupgrade 11 http://www.ti.com/lit/an/slaa682/slaa682.pdf 12 https://www.embedded.com/design/configurable-systems/4008264/Using-software-flashing-to- secure-embedded-device-updates 13 https://ieeexplore.ieee.org/document/7807959 14 https://www.st.com/content/ccc/resource/sales_and_marketing/presentation/product_presentation/gr oup0/79/79/81/91/98/19/4e/b2/x-cube-sbsfu_marketing-pres/files/x-cube-sbsfu_marketing- pres.pdf/jcr:content/translations/en.x-cube-sbsfu_marketing-pres.pdf 15 https://dspace.vsb.cz/bitstream/handle/10084/120984/1858-10404-1-PB.pdf?sequence=1 16 https://ieeexplore.ieee.org/document/7448561 17 http://www.provenrun.com/solutions/secure-firmware-update/ 18 https://mkrak.org/2018/01/10/updating-embedded-linux-devices-part1/ 19 https://www.timesys.com/security/software-firmware-update-design-considerations/ 20 https://jumpnowtek.com/linux/An-upgrade-strategy-for-embedded-Linux-systems.html 21 https://events.static.linuxfound.org/sites/events/files/slides/elc16_angelatos.pdf