5

My best guess as of now is "partition and mount point layout". But it feels like there's more to it, since the bootloader can identify the HBOOT by name.

I've been flashing custom ROMs for quite a while now, but I still haven't quite grasped what HBOOT really is or means.

Izzy
  • 91,166
  • 73
  • 343
  • 943
Emil Lundberg
  • 223
  • 2
  • 3
  • 7

1 Answers1

6

HBOOT is bootloader. It lives inside NAND's first partition, mtd0 (if partition map is MTD). It is loaded in memory (RAM) when device is switched ON. Its jobs are:

  • Check the Hardware.

  • Initialize the Hardware.

  • Start the Operating System (Either Android or Recovery).

HBOOT can also support doing more than this like flashing ROMs.

Something More: Nandroid backup and restore don't touch HBOOT.

iOS
  • 12,381
  • 13
  • 63
  • 103
  • Curious, is HBOOT manufacturer specific or is it the common name for the bootloader? – CatShoes Nov 20 '12 at 20:34
  • @CatShoes HBOOT is manufacturer specific term.. generally used by HTC. – iOS Nov 20 '12 at 20:49
  • @SachinSekhar Thanks, I have an HTC phone so I see it all the time, but didn't seem to find it with other devices, just wasn't sure. Thanks, again. – CatShoes Nov 20 '12 at 20:54
  • Also the Nexus 9 uses H-BOOT.Even though it is a Nexus.Other Nexus devices use Google bootloader – Suici Doga Mar 10 '16 at 13:27