SlideShare a Scribd company logo
Booting Android
Bootloaders, fastboot and boot images
Booting Android 1 Copyright © 2011-2016, 2net Ltd
License
These slides are available under a Creative Commons Attribution-ShareAlike 3.0
license. You can read the full text of the license here
http://creativecommons.org/licenses/by-sa/3.0/legalcode
You are free to
• copy, distribute, display, and perform the work
• make derivative works
• make commercial use of the work
Under the following conditions
• Attribution: you must give the original author credit
• Share Alike: if you alter, transform, or build upon this work, you may distribute
the resulting work only under a license identical to this one (i.e. include this
page exactly as it is)
• For any reuse or distribution, you must make clear to others the license terms of
this work
Booting Android 2 Copyright © 2011-2016, 2net Ltd
About Chris Simmonds
• Consultant and trainer
• Author of Mastering Embedded Linux
Programming
• Working with embedded Linux since 1999
• Android since 2009
• Speaker at many conferences and
workshops
"Looking after the Inner Penguin" blog at http://2net.co.uk/
https://uk.linkedin.com/in/chrisdsimmonds/
https://google.com/+chrissimmonds
Booting Android 3 Copyright © 2011-2016, 2net Ltd
Overview
• Android system images: boot, recovery, system,
userdata and cache
• Android "boot blobs"
• Bootloaders for Android
• Fastboot
• Flash memory and flash filesystems
Booting Android 4 Copyright © 2011-2016, 2net Ltd
Image files
• A typical build for an Android device produces five
image files in out/target/product/<product>
Image Description
boot.img Kernel + ramdisk used for normal boot
recovery.img Kernel + ramdisk used to boot into recovery mode
system.img File system image for /system
userdata.img File system image for /data
cache.img File system image for /cache
Booting Android 5 Copyright © 2011-2016, 2net Ltd
Typical flash memory layout
Bootloader
Boot kernel + ramdisk
Recovery kernel + ramdisk
/system - read-only file system
/data - read/write file system
/cache - read/write file system
misc (optional - used during OTA update)
Booting Android 6 Copyright © 2011-2016, 2net Ltd
The bootloader
• All systems need a bootloader
• Responsible for:
• Early hardware initialisation
• Load and boot kernel and initial ram filesystem
• System maintenance, including loading and flashing
new kernel and system images
• Example: U-Boot
• Open source
• Used in many dev boards (BeagleBone, Raspberry
Pi) and in many shipping products
• http://www.denx.de/wiki/U-Boot/WebHome
Booting Android 7 Copyright © 2011-2016, 2net Ltd
Booting Android
• It is possible to boot Android using a normal
bootloader such as U-Boot
• However, most devices include Android-specific
features:
• Support normal and recovery boot modes
• Ability to load kernel + ramdisk blobs (boot.img and
recovery.img)
• The fastboot protocol
• Example: LK (Little Kernel)
• git://codeaurora.org/kernel/lk.git
• Supports many Qualcomm-based devices as well as
rudimentary support for BeagleBoard and PC-x86
Booting Android 8 Copyright © 2011-2016, 2net Ltd
The Android bootloader
• Pre JB 4.2, AOSP had source for a simple bootloader
in bootable/bootloader/legacy
• Used in early handsets (Android Dev Phone, HTC
Dream)
• Not updated since the Eclair release
• Some of this code may have found its way into
proprietary bootloaders
Booting Android 9 Copyright © 2011-2016, 2net Ltd
Android boot and recovery images
• The files boot.img and recovery.img are created by the
tool mkbootimg (the code is in system/core/mkbootimg)
• They contain a compressed kernel, the kernel
command line and, optionally, a ramdisk in the
normal Linux compressed cpio format
• Most Android bootloaders can read and load these
images into memory
• The format is defined in bootimg.h
Booting Android 10 Copyright © 2011-2016, 2net Ltd
Boot and recovery image format
Header
Kernel
image
(zImage)
ramdisk
image
(compressed
cpio)
struct boot_img_hdr {
unsigned char magic[8]; // "ANDROID!"
unsigned kernel_size;
unsigned kernel_addr;
unsigned ramdisk_size;
unsigned ramdisk_addr;
unsigned second_size; // 2nd image: not used
unsigned second_addr;
unsigned tags_addr;
unsigned page_size; // typically 2048
unsigned unused[2];
unsigned char name[16]; // product name
unsigned char cmdline[512]; // kernel cmdline
unsigned id[8]; // timestamp/checksum/etc
unsigned char extra_cmdline[1024];
};
From system/core/mkbootimg/bootimg.h
Booting Android 11 Copyright © 2011-2016, 2net Ltd
Boot sequence
Bootloader
Boot recovery Boot normal
Load recovery
kernel and ramdisk
Recovery
mode
Load normal
kernel and ramdisk
Run /init
Read init*.rc
Mount file systems
Start services
Normal
mode
Power
on
Booting Android 12 Copyright © 2011-2016, 2net Ltd
Reverse-engineering a boot image
• Sometimes it is useful to extract the files from a boot
or recovery image
• There are numerous tools to do so, for example
boot-extract
https://github.com/csimmonds/boot-extract
$ boot-extract recovery.img
Boot header
flash page size 2048
kernel size 0x432358
kernel load addr 0x10008000
ramdisk size 0x173740
ramdisk load addr 0x11000000
name
cmdline
zImage extracted
ramdisk offset 4403200 (0x433000)
ramdisk.cpio.gz extracted
$ ls
ramdisk.cpio.gz recovery.img zImage
Booting Android 13 Copyright © 2011-2016, 2net Ltd
Extracting files from a ramdisk
• The ramdisk is just a compressed cpio archive
• Extract the files like so:
$ zcat ramdisk.cpio.gz | cpio -i
5665 blocks
$ ls
charger fstab.manta property_contexts
...
Booting Android 14 Copyright © 2011-2016, 2net Ltd
Creating a new ramdisk
• Do the following
$ cd some-directory
$ find . | cpio -H newc --owner root:root -ov > ∼/ramdisk.cpio
$ cd ∼
$ gzip ramdisk.cpio
• The end result will be ramdisk.cpio.gz
Booting Android 15 Copyright © 2011-2016, 2net Ltd
Creating a new boot image
• You can create a boot or recovery image using the
mkbootimg command
• For example:
$ mkbootimg --kernel zImage --ramdisk ramdisk.cpio.gz 
--base 0x10000000 --pagesize 2048 -o recovery-new.img
• --base is used by mkbootimg to calculate the kernel
and ramdisk load addresses as follows:
• kernel_addr = base + 0x00008000
• ramdisk_addr = base + 0x01000000
Booting Android 16 Copyright © 2011-2016, 2net Ltd
Fastboot
• Fastboot is a USB protocol and a command language
for various maintenance and development tasks
• Fastboot protocol v0.4 is defined in:
• bootable/bootloader/legacy/fastboot_protocol.txt
(up to JB 4.1)
• system/core/fastboot/fastboot_protocol.txt (JB 4.3
and later)
NOTE: fastboot is not about the speed of booting; it is about making
the development process simpler (and faster)
Booting Android 17 Copyright © 2011-2016, 2net Ltd
Booting into the bootloader
• On a typical Android device you can boot into the
bootloader by:
• powering on while pressing various buttons (Google
for details)
• from a running device, typing:
$ adb reboot-bootloader
• Once the device has booted into the bootloader you
can use the fastboot command on the development
machine to communicate with it
Booting Android 18 Copyright © 2011-2016, 2net Ltd
fastboot commands (1/3)
Basic commands
Command Description
devices List devices attached that will accept fast-
boot commands
getvar Get a variable
continue Continue boot process as normal
reboot Reboot device
reboot-bootloader Reboot back into bootloader
Booting Android 19 Copyright © 2011-2016, 2net Ltd
fastboot commands (2/3)
Flashing commands
Command Description
erase <partition> Erase <partition>
flash <partition> Erase and program <partition>
with <partition>.img of current
product
flash <partition> <filename> Erase and program <partition>
with <filename>
flashall Erase and program boot.img,
recovery.img and system.img of
current product and then reboot
Where
<partition> is one of boot, recovery, system, userdata, cache
current product is $ANDROID_PRODUCT_OUT
Note: the location and size of partitions is hard-coded in the bootloader
Booting Android 20 Copyright © 2011-2016, 2net Ltd
fastboot commands (3/3)
Special commands
Command Description
oem Device-specific operations
boot <kernel> <ramdisk> Load and boot kernel and ramdisk
Example:
$ fastboot -c "kernel command line" boot zImage ramdisk.cpio.gz
Booting Android 21 Copyright © 2011-2016, 2net Ltd
fastboot variables
The getvar command should return values for at least
these variables:
Variable Meaning
version Version of the protocol: 0.4 is the one doc-
umented
version-bootloader Version string of the Bootloader
version-baseband Version string of the Baseband Software
product Name of the product
serialno Product serial number
secure If "yes" the bootloader requires signed im-
ages
Booting Android 22 Copyright © 2011-2016, 2net Ltd
Unlocking the bootloader
• Most devices ship with the bootloader locked
• fastboot getvar secure returns true
• Unlocking - where it is allowed - is device specific
• For example, on recent Nexus devices you use a
fastboot oem command
$ fastboot oem unlock
• Answer yes to the on-screen prompt
• For security reasons, this wipes the data and cache
partitions
Booting Android 23 Copyright © 2011-2016, 2net Ltd
What goes where?
ramdisk.img:
read-only
ramdisk
/init
/init.rc
/system
/data
/cache
system.img: read-only
/app built-in Android apps
/bin native binaries
/framework Java components of framework
/lib native libraries
...
userdata.img: read-write
/app user-installed Android apps
/data persistent data
/dalvik-cache optimised Dex files
/system
...
cache.img: read-write
/backup place to backup up app data
/recovery logs used in recovery mode
Booting Android 24 Copyright © 2011-2016, 2net Ltd
Flash memory devices
• In almost all cases data is stored in flash memory
• There are two main types
• Raw NAND flash, where the chips are accessed
directly by Linux
• Managed flash, which contain an on-chip controller
• Managed flash is the most common
• Examples:
• MMC, SD and MicroSD cards: removeable storage
• eMMC (embedded MMC): same electrical interface
as MMC, but packaged as a chip
• UFS (Universal Flash Storage): similar to eMMC, but
faster and with a SCSI command set
Booting Android 25 Copyright © 2011-2016, 2net Ltd
Raw NAND flash
• NAND flash chips are accessed via the Linux MTD
(Memory Technology Device) drivers
• Partitions are named /dev/block/mtdblockN where N
is the partition number
• /proc/mtd lists the partitions and sizes
# cat /proc/mtd
dev: size erasesize name
mtd0: 05660000 00020000 "system"
mtd1: 04000000 00020000 "userdata"
mtd2: 04000000 00020000 "cache"
Booting Android 26 Copyright © 2011-2016, 2net Ltd
File systems for raw NAND flash
• Flash translation layer implemented in the filesystem
• NAND flash devices require special filesystem
support, such as:
• jffs2 (Journalling Flash File System 2)
• Note: incompatible with the Android run-time (no
writeable mmaped files)!
• yaffs2 (Yet Another Flash File System 2)
• ubifs (Unsorted Block Image File System)
• Most Android devices with NAND flash use yaffs2
Booting Android 27 Copyright © 2011-2016, 2net Ltd
SD and eMMC
• Flash translation layer implemented in the chip
• The controller chip splits flash memory into 512-byte
sectors just like hard drives
• Accessed via the Linux mmcblock driver
• Partition device nodes have names of the form
mmcblk[chip number]p[partition number]
• For example:
/dev/block/mmcblk0p3 /system
/dev/block/mmcblk0p8 /data
/dev/block/mmcblk0p4 /cache
Booting Android 28 Copyright © 2011-2016, 2net Ltd
File systems for eMMC
• eMMC devices "look" like hard drives
• Use the same filesystem types
• The preferred type in most Android devices is ext4
• Alternative: F2FS (Flash Friendly File System)
• Develpoed by Samsung, and deployed on some of
their devices
• Faster file writes than ext4
Booting Android 29 Copyright © 2011-2016, 2net Ltd
SD cards and other removable media
• This includes MMC, SD, microSD and USB flash
drives
• For compatibility with other operating systems they
come pre-formatted with FAT32
• Use the Linux vfat driver
Booting Android 30 Copyright © 2011-2016, 2net Ltd
Delving deeper
• This is an excerpt from my Android Porting class
• If you would like to find out more secrets of Android,
visit http://www.2net.co.uk/training.html and
book a course
Booting Android 31 Copyright © 2011-2016, 2net Ltd

More Related Content

PPT
Learning AOSP - Android Booting Process
PPTX
Android Booting Sequence
PDF
Android Things : Building Embedded Devices
PDF
Understanding the Android System Server
PDF
Embedded Android Workshop with Pie
PDF
Android Storage - Vold
PDF
Android OTA updates
ODP
Embedded Android : System Development - Part III
Learning AOSP - Android Booting Process
Android Booting Sequence
Android Things : Building Embedded Devices
Understanding the Android System Server
Embedded Android Workshop with Pie
Android Storage - Vold
Android OTA updates
Embedded Android : System Development - Part III

What's hot (20)

PDF
Android Boot Time Optimization
PDF
Android's HIDL: Treble in the HAL
PPT
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
ODP
Q4.11: Porting Android to new Platforms
PDF
Embedded Android : System Development - Part II (Linux device drivers)
PDF
Embedded Android : System Development - Part III (Audio / Video HAL)
PPT
U boot porting guide for SoC
PDF
Embedded Android : System Development - Part IV (Android System Services)
PDF
Using and Customizing the Android Framework / part 4 of Embedded Android Work...
PDF
Embedded Android : System Development - Part IV
PDF
Android's Multimedia Framework
PDF
Embedded Android : System Development - Part I
PDF
Uboot startup sequence
PPT
Android booting sequece and setup and debugging
PDF
Android OS Porting: Introduction
PDF
U-Boot - An universal bootloader
PDF
Embedded Android : System Development - Part II (HAL)
PDF
Android Binder IPC for Linux
PDF
Jagan Teki - U-boot from scratch
PPTX
Linux device drivers
Android Boot Time Optimization
Android's HIDL: Treble in the HAL
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
Q4.11: Porting Android to new Platforms
Embedded Android : System Development - Part II (Linux device drivers)
Embedded Android : System Development - Part III (Audio / Video HAL)
U boot porting guide for SoC
Embedded Android : System Development - Part IV (Android System Services)
Using and Customizing the Android Framework / part 4 of Embedded Android Work...
Embedded Android : System Development - Part IV
Android's Multimedia Framework
Embedded Android : System Development - Part I
Uboot startup sequence
Android booting sequece and setup and debugging
Android OS Porting: Introduction
U-Boot - An universal bootloader
Embedded Android : System Development - Part II (HAL)
Android Binder IPC for Linux
Jagan Teki - U-boot from scratch
Linux device drivers
Ad

Similar to Booting Android: bootloaders, fastboot and boot images (20)

PDF
How to Make Android's Bootable Recovery Work For You by Drew Suarez
PDF
Introduction to Modern U-Boot
PDF
Bringing up Android on your favorite X86 Workstation or VM (AnDevCon Boston, ...
PDF
Hacking Android OS
PDF
It's Assembler, Jim, but not as we know it: (ab)using binaries from embedded ...
PPTX
Bootloaders (U-Boot)
PDF
Linux kernel booting
PPT
Booting in operating system in slideshare.ppt
PPT
Booting how boot to the system and details
PPT
PPT
Booting
ODP
Basics of boot-loader
PDF
Android on Intel Architecture: ROM Cooking Tutorial
PDF
Tkos secure boot_lecture_20190605
ODP
5. boot process
ODP
Rooting an Android phone
PDF
Android Internals
PPT
U Boot or Universal Bootloader
How to Make Android's Bootable Recovery Work For You by Drew Suarez
Introduction to Modern U-Boot
Bringing up Android on your favorite X86 Workstation or VM (AnDevCon Boston, ...
Hacking Android OS
It's Assembler, Jim, but not as we know it: (ab)using binaries from embedded ...
Bootloaders (U-Boot)
Linux kernel booting
Booting in operating system in slideshare.ppt
Booting how boot to the system and details
Booting
Basics of boot-loader
Android on Intel Architecture: ROM Cooking Tutorial
Tkos secure boot_lecture_20190605
5. boot process
Rooting an Android phone
Android Internals
U Boot or Universal Bootloader
Ad

More from Chris Simmonds (20)

PDF
Debugging embedded devices using GDB
PDF
Debian or Yocto Project? Which is the best for your Embedded Linux project?
PDF
Embedded Linux Quick Start Guide v1.5
PDF
Running Android on the Raspberry Pi: Android Pie meets Raspberry Pi
PDF
Reducing the boot time of Linux devices
PDF
Android rpi-csimmonds-fosdem-2019
PDF
Reducing boot time in embedded Linux
PDF
Linux power management: are you doing it right?
PDF
Embedded Android: Android beyond the smartphone
PDF
Software update for IoT Embedded World 2017
PDF
Quick and Easy Device Drivers for Embedded Linux Using UIO
PDF
Software update for IoT: the current state of play
PDF
Read-only rootfs: theory and practice
PDF
Android beyond the smartphone
PDF
10 ways hardware engineers can make software integration easier
PDF
Userspace drivers-2016
PDF
The end of embedded Linux (as we know it)
PDF
Linux field-update-2015
PDF
Tuning Android for low RAM
PDF
The Android graphics path, in depth
Debugging embedded devices using GDB
Debian or Yocto Project? Which is the best for your Embedded Linux project?
Embedded Linux Quick Start Guide v1.5
Running Android on the Raspberry Pi: Android Pie meets Raspberry Pi
Reducing the boot time of Linux devices
Android rpi-csimmonds-fosdem-2019
Reducing boot time in embedded Linux
Linux power management: are you doing it right?
Embedded Android: Android beyond the smartphone
Software update for IoT Embedded World 2017
Quick and Easy Device Drivers for Embedded Linux Using UIO
Software update for IoT: the current state of play
Read-only rootfs: theory and practice
Android beyond the smartphone
10 ways hardware engineers can make software integration easier
Userspace drivers-2016
The end of embedded Linux (as we know it)
Linux field-update-2015
Tuning Android for low RAM
The Android graphics path, in depth

Recently uploaded (20)

PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
1. Introduction to Computer Programming.pptx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Getting Started with Data Integration: FME Form 101
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Electronic commerce courselecture one. Pdf
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PPTX
Big Data Technologies - Introduction.pptx
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
A comparative analysis of optical character recognition models for extracting...
PPT
Teaching material agriculture food technology
PPTX
SOPHOS-XG Firewall Administrator PPT.pptx
Spectral efficient network and resource selection model in 5G networks
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
1. Introduction to Computer Programming.pptx
Reach Out and Touch Someone: Haptics and Empathic Computing
Getting Started with Data Integration: FME Form 101
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Digital-Transformation-Roadmap-for-Companies.pptx
Building Integrated photovoltaic BIPV_UPV.pdf
Electronic commerce courselecture one. Pdf
MIND Revenue Release Quarter 2 2025 Press Release
20250228 LYD VKU AI Blended-Learning.pptx
Big Data Technologies - Introduction.pptx
Advanced methodologies resolving dimensionality complications for autism neur...
Dropbox Q2 2025 Financial Results & Investor Presentation
Group 1 Presentation -Planning and Decision Making .pptx
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
A comparative analysis of optical character recognition models for extracting...
Teaching material agriculture food technology
SOPHOS-XG Firewall Administrator PPT.pptx

Booting Android: bootloaders, fastboot and boot images

  • 1. Booting Android Bootloaders, fastboot and boot images Booting Android 1 Copyright © 2011-2016, 2net Ltd
  • 2. License These slides are available under a Creative Commons Attribution-ShareAlike 3.0 license. You can read the full text of the license here http://creativecommons.org/licenses/by-sa/3.0/legalcode You are free to • copy, distribute, display, and perform the work • make derivative works • make commercial use of the work Under the following conditions • Attribution: you must give the original author credit • Share Alike: if you alter, transform, or build upon this work, you may distribute the resulting work only under a license identical to this one (i.e. include this page exactly as it is) • For any reuse or distribution, you must make clear to others the license terms of this work Booting Android 2 Copyright © 2011-2016, 2net Ltd
  • 3. About Chris Simmonds • Consultant and trainer • Author of Mastering Embedded Linux Programming • Working with embedded Linux since 1999 • Android since 2009 • Speaker at many conferences and workshops "Looking after the Inner Penguin" blog at http://2net.co.uk/ https://uk.linkedin.com/in/chrisdsimmonds/ https://google.com/+chrissimmonds Booting Android 3 Copyright © 2011-2016, 2net Ltd
  • 4. Overview • Android system images: boot, recovery, system, userdata and cache • Android "boot blobs" • Bootloaders for Android • Fastboot • Flash memory and flash filesystems Booting Android 4 Copyright © 2011-2016, 2net Ltd
  • 5. Image files • A typical build for an Android device produces five image files in out/target/product/<product> Image Description boot.img Kernel + ramdisk used for normal boot recovery.img Kernel + ramdisk used to boot into recovery mode system.img File system image for /system userdata.img File system image for /data cache.img File system image for /cache Booting Android 5 Copyright © 2011-2016, 2net Ltd
  • 6. Typical flash memory layout Bootloader Boot kernel + ramdisk Recovery kernel + ramdisk /system - read-only file system /data - read/write file system /cache - read/write file system misc (optional - used during OTA update) Booting Android 6 Copyright © 2011-2016, 2net Ltd
  • 7. The bootloader • All systems need a bootloader • Responsible for: • Early hardware initialisation • Load and boot kernel and initial ram filesystem • System maintenance, including loading and flashing new kernel and system images • Example: U-Boot • Open source • Used in many dev boards (BeagleBone, Raspberry Pi) and in many shipping products • http://www.denx.de/wiki/U-Boot/WebHome Booting Android 7 Copyright © 2011-2016, 2net Ltd
  • 8. Booting Android • It is possible to boot Android using a normal bootloader such as U-Boot • However, most devices include Android-specific features: • Support normal and recovery boot modes • Ability to load kernel + ramdisk blobs (boot.img and recovery.img) • The fastboot protocol • Example: LK (Little Kernel) • git://codeaurora.org/kernel/lk.git • Supports many Qualcomm-based devices as well as rudimentary support for BeagleBoard and PC-x86 Booting Android 8 Copyright © 2011-2016, 2net Ltd
  • 9. The Android bootloader • Pre JB 4.2, AOSP had source for a simple bootloader in bootable/bootloader/legacy • Used in early handsets (Android Dev Phone, HTC Dream) • Not updated since the Eclair release • Some of this code may have found its way into proprietary bootloaders Booting Android 9 Copyright © 2011-2016, 2net Ltd
  • 10. Android boot and recovery images • The files boot.img and recovery.img are created by the tool mkbootimg (the code is in system/core/mkbootimg) • They contain a compressed kernel, the kernel command line and, optionally, a ramdisk in the normal Linux compressed cpio format • Most Android bootloaders can read and load these images into memory • The format is defined in bootimg.h Booting Android 10 Copyright © 2011-2016, 2net Ltd
  • 11. Boot and recovery image format Header Kernel image (zImage) ramdisk image (compressed cpio) struct boot_img_hdr { unsigned char magic[8]; // "ANDROID!" unsigned kernel_size; unsigned kernel_addr; unsigned ramdisk_size; unsigned ramdisk_addr; unsigned second_size; // 2nd image: not used unsigned second_addr; unsigned tags_addr; unsigned page_size; // typically 2048 unsigned unused[2]; unsigned char name[16]; // product name unsigned char cmdline[512]; // kernel cmdline unsigned id[8]; // timestamp/checksum/etc unsigned char extra_cmdline[1024]; }; From system/core/mkbootimg/bootimg.h Booting Android 11 Copyright © 2011-2016, 2net Ltd
  • 12. Boot sequence Bootloader Boot recovery Boot normal Load recovery kernel and ramdisk Recovery mode Load normal kernel and ramdisk Run /init Read init*.rc Mount file systems Start services Normal mode Power on Booting Android 12 Copyright © 2011-2016, 2net Ltd
  • 13. Reverse-engineering a boot image • Sometimes it is useful to extract the files from a boot or recovery image • There are numerous tools to do so, for example boot-extract https://github.com/csimmonds/boot-extract $ boot-extract recovery.img Boot header flash page size 2048 kernel size 0x432358 kernel load addr 0x10008000 ramdisk size 0x173740 ramdisk load addr 0x11000000 name cmdline zImage extracted ramdisk offset 4403200 (0x433000) ramdisk.cpio.gz extracted $ ls ramdisk.cpio.gz recovery.img zImage Booting Android 13 Copyright © 2011-2016, 2net Ltd
  • 14. Extracting files from a ramdisk • The ramdisk is just a compressed cpio archive • Extract the files like so: $ zcat ramdisk.cpio.gz | cpio -i 5665 blocks $ ls charger fstab.manta property_contexts ... Booting Android 14 Copyright © 2011-2016, 2net Ltd
  • 15. Creating a new ramdisk • Do the following $ cd some-directory $ find . | cpio -H newc --owner root:root -ov > ∼/ramdisk.cpio $ cd ∼ $ gzip ramdisk.cpio • The end result will be ramdisk.cpio.gz Booting Android 15 Copyright © 2011-2016, 2net Ltd
  • 16. Creating a new boot image • You can create a boot or recovery image using the mkbootimg command • For example: $ mkbootimg --kernel zImage --ramdisk ramdisk.cpio.gz --base 0x10000000 --pagesize 2048 -o recovery-new.img • --base is used by mkbootimg to calculate the kernel and ramdisk load addresses as follows: • kernel_addr = base + 0x00008000 • ramdisk_addr = base + 0x01000000 Booting Android 16 Copyright © 2011-2016, 2net Ltd
  • 17. Fastboot • Fastboot is a USB protocol and a command language for various maintenance and development tasks • Fastboot protocol v0.4 is defined in: • bootable/bootloader/legacy/fastboot_protocol.txt (up to JB 4.1) • system/core/fastboot/fastboot_protocol.txt (JB 4.3 and later) NOTE: fastboot is not about the speed of booting; it is about making the development process simpler (and faster) Booting Android 17 Copyright © 2011-2016, 2net Ltd
  • 18. Booting into the bootloader • On a typical Android device you can boot into the bootloader by: • powering on while pressing various buttons (Google for details) • from a running device, typing: $ adb reboot-bootloader • Once the device has booted into the bootloader you can use the fastboot command on the development machine to communicate with it Booting Android 18 Copyright © 2011-2016, 2net Ltd
  • 19. fastboot commands (1/3) Basic commands Command Description devices List devices attached that will accept fast- boot commands getvar Get a variable continue Continue boot process as normal reboot Reboot device reboot-bootloader Reboot back into bootloader Booting Android 19 Copyright © 2011-2016, 2net Ltd
  • 20. fastboot commands (2/3) Flashing commands Command Description erase <partition> Erase <partition> flash <partition> Erase and program <partition> with <partition>.img of current product flash <partition> <filename> Erase and program <partition> with <filename> flashall Erase and program boot.img, recovery.img and system.img of current product and then reboot Where <partition> is one of boot, recovery, system, userdata, cache current product is $ANDROID_PRODUCT_OUT Note: the location and size of partitions is hard-coded in the bootloader Booting Android 20 Copyright © 2011-2016, 2net Ltd
  • 21. fastboot commands (3/3) Special commands Command Description oem Device-specific operations boot <kernel> <ramdisk> Load and boot kernel and ramdisk Example: $ fastboot -c "kernel command line" boot zImage ramdisk.cpio.gz Booting Android 21 Copyright © 2011-2016, 2net Ltd
  • 22. fastboot variables The getvar command should return values for at least these variables: Variable Meaning version Version of the protocol: 0.4 is the one doc- umented version-bootloader Version string of the Bootloader version-baseband Version string of the Baseband Software product Name of the product serialno Product serial number secure If "yes" the bootloader requires signed im- ages Booting Android 22 Copyright © 2011-2016, 2net Ltd
  • 23. Unlocking the bootloader • Most devices ship with the bootloader locked • fastboot getvar secure returns true • Unlocking - where it is allowed - is device specific • For example, on recent Nexus devices you use a fastboot oem command $ fastboot oem unlock • Answer yes to the on-screen prompt • For security reasons, this wipes the data and cache partitions Booting Android 23 Copyright © 2011-2016, 2net Ltd
  • 24. What goes where? ramdisk.img: read-only ramdisk /init /init.rc /system /data /cache system.img: read-only /app built-in Android apps /bin native binaries /framework Java components of framework /lib native libraries ... userdata.img: read-write /app user-installed Android apps /data persistent data /dalvik-cache optimised Dex files /system ... cache.img: read-write /backup place to backup up app data /recovery logs used in recovery mode Booting Android 24 Copyright © 2011-2016, 2net Ltd
  • 25. Flash memory devices • In almost all cases data is stored in flash memory • There are two main types • Raw NAND flash, where the chips are accessed directly by Linux • Managed flash, which contain an on-chip controller • Managed flash is the most common • Examples: • MMC, SD and MicroSD cards: removeable storage • eMMC (embedded MMC): same electrical interface as MMC, but packaged as a chip • UFS (Universal Flash Storage): similar to eMMC, but faster and with a SCSI command set Booting Android 25 Copyright © 2011-2016, 2net Ltd
  • 26. Raw NAND flash • NAND flash chips are accessed via the Linux MTD (Memory Technology Device) drivers • Partitions are named /dev/block/mtdblockN where N is the partition number • /proc/mtd lists the partitions and sizes # cat /proc/mtd dev: size erasesize name mtd0: 05660000 00020000 "system" mtd1: 04000000 00020000 "userdata" mtd2: 04000000 00020000 "cache" Booting Android 26 Copyright © 2011-2016, 2net Ltd
  • 27. File systems for raw NAND flash • Flash translation layer implemented in the filesystem • NAND flash devices require special filesystem support, such as: • jffs2 (Journalling Flash File System 2) • Note: incompatible with the Android run-time (no writeable mmaped files)! • yaffs2 (Yet Another Flash File System 2) • ubifs (Unsorted Block Image File System) • Most Android devices with NAND flash use yaffs2 Booting Android 27 Copyright © 2011-2016, 2net Ltd
  • 28. SD and eMMC • Flash translation layer implemented in the chip • The controller chip splits flash memory into 512-byte sectors just like hard drives • Accessed via the Linux mmcblock driver • Partition device nodes have names of the form mmcblk[chip number]p[partition number] • For example: /dev/block/mmcblk0p3 /system /dev/block/mmcblk0p8 /data /dev/block/mmcblk0p4 /cache Booting Android 28 Copyright © 2011-2016, 2net Ltd
  • 29. File systems for eMMC • eMMC devices "look" like hard drives • Use the same filesystem types • The preferred type in most Android devices is ext4 • Alternative: F2FS (Flash Friendly File System) • Develpoed by Samsung, and deployed on some of their devices • Faster file writes than ext4 Booting Android 29 Copyright © 2011-2016, 2net Ltd
  • 30. SD cards and other removable media • This includes MMC, SD, microSD and USB flash drives • For compatibility with other operating systems they come pre-formatted with FAT32 • Use the Linux vfat driver Booting Android 30 Copyright © 2011-2016, 2net Ltd
  • 31. Delving deeper • This is an excerpt from my Android Porting class • If you would like to find out more secrets of Android, visit http://www.2net.co.uk/training.html and book a course Booting Android 31 Copyright © 2011-2016, 2net Ltd