Unbricking
MrChromebox

Website Discord

This can severely and dangerously harm your Chromebook if done incorrectly. Perform this exploit at your very own risk.

Fixing a Chromebook bricked system with hardware disassembly and external devices. If you have found your way here, it is likely because you updated your firmware and, despite best efforts to minimize the possibility, something went wrong in the process. Thankfully, most Chromebooks can be easily unbricked using cheap, readily available hardware: older Chromebooks using a ch341a USB programmer from Amazon/eBay/Alibaba (and many other sources), and newer (2017+) Chromebooks using a USB-C debug cable (aka Suzy-Q cable).

Flashing/Unbricking with a CH341a USB programmer

Requirements

  • A ChromeOS device with a SOIC-8 type SPI flash chip. Most Chromebooks released before 2018 use this type of chip, but there are a few notable exceptions: - Google Chromebook Pixel 2013 - Google Chromebook Pixel 2015 - HP Chromebook 13 G1 - Asus Chromebook C302SA
  • These devices all use a WSON-8 flash chip, which does not expose the pins of the chip, so they cannot easily be "clipped" like a SOIC-8 chip. While it is usually possible to modify a SOIC-8 chip clip to attach to a WSON-8 chip, it's less than ideal. Both Chromebook Pixels feature a Google debug header, which can connect to a debug servo with a special cable and be flashed that way, but not an option for most users (I however do not have access to one, and sadly cannot unbrick Chromebook Pixels for any users upon request).

  • A device running Linux from which to run flashrom. For this guide, I will use a Ubuntu 23.04 live USB.
  • A CH341a USB flash programmer ( Amazon link )
  • A 1.8v adapter ( Amazon link ) (needed for devices which use 1.8v flash chips. Some/Most Baytrail, Braswell, Skylake and many newer devices use a 1.8v flash chip)
  • An SOIC-8 chip clip ( Amazon Link )
  • These 3 components are often bundled together at a lower cost ( Amazon link ), and if you're unsure if your device uses a 1.8v flash chip or a 3.3v one, it makes sense to have the adapter on hand if needed.

      Instructions

      Hardware Disassembly

      While this is somewhat device-specific, the main points are the same:

    1. Disconnect all external power Remove bottom cover (screws are often located under rubber feet or strips) Disconnect the internal battery (for Chromeboxes, disconnect the small CMOS battery) Locate the SPI flash chip
    2. Most ChromeOS devices use a Winbond flash chip, though some use a compatible chip from another manufacturer, eg Gigadevices. It will be either an 8MB or 16MB chip, with the identifier W25Q64[xx] (8MB) or W25Q128[xx] (16MB) where [xx] is usually FV or DV. We do not want to touch the EC firmware chip, which is identified by W25X40[xx]. Unfortunately, many devices have the flash chip located on the top side of the main board, and require fully removing the main board in order to flash. This is true for most Baytrail and Braswell models.

      Pin 1 of the flash chip will be notated by a dot/depression on the chip; be sure to align this with pin 1 on the chip clip wiring (a red strip on the example linked above).

      Googling should locate a disassembly guide for most models. If you can't find one for your exact model, try to find one for another model of the same manufacturer as the bottom cover removal tends to be very similar.

      Preparing to flash

      Once you have your device disassembled and flash chip located, time to boot up the flashing environment. Most any Linux setup should do as long as either flashrom is available from the distro's software repositories, or it's 64-bit x86 (in which case you can download a statically compiled build of flashrom from my site). This guide will use a Ubuntu 23.04 live session booted from USB.

      So let's get to it:

    3. Boot your Linux environment (Ubuntu 2304 live USB or later recommended) Connect to WiFi/internet Open a (non-root) terminal/shell window, change to home directory
    4. cd;

    5. Install flashrom via apt:
    6. sudo apt update
      sudo apt install flashrom

    7. Assemble CH341a programmer, 1.8v adapter (if needed), and chip clip/wiring. Ensure that pin 1 is correct and consistent.
    8. Ch341a annotated.png

    9. Connect the chip clip to the SPI flash chip, then connect the CH341a to the Linux host machine. Note the dot/depression indicating pin 1.
    10. SOIC-8 chip.jpg

    11. Test connectivity and ensure the flash chip is properly identified:
    12. sudo flashrom -p ch341a_spi

    13. Flashrom will produce output identifying the flash chip. If it doesn't, double check your connections to the programmer and the chip clip and retry.
    14. Flashrom chip detect.png

    15. Determine file to be flashed
    16. If you were flashing the UEFI firmware when things went sideways, then that's the easiest way to proceed. You can download the UEFI firmware for your device by examining the sources.sh file from the Firmware Utility Script GitHub repository. Simply concatenate the device-specific filename to the Full ROM base path:

      wget

    17. eg for the Acer Chromebook 14 CB3-431 (EDGAR)
    18. wget https://mrchromebox.tech/files/firmware/full_rom/coreboot_tiano-edgar-mrchromebox_20180827.rom

    19. Don't forget to get the sha1 file for verification:
    20. wget https://mrchromebox.tech/files/firmware/full_rom/coreboot_tiano-edgar-mrchromebox_20180827.rom.sha1

    21. Then verify the download:
    22. sha1sum -c coreboot_tiano-edgar-mrchromebox_20180827.rom.sha1

    23. - The shellball firmware for the device As with the UEFI firmware above, the shellball rom can be downloaded by concatenating the shellball base path with the device-specific filename:
    24. wget /shellball..bin

    25. eg for the Acer Chromebook 14 CB3-431 (EDGAR):
    26. wget https://mrchromebox.tech/files/firmware/shellball/shellball.edgar.bin

      If you're not sure which file to use for your device / don't know your device's board name, you can reference:
      https://mrchromebox.tech/#devices and/or https://www.chromium.org/chromium-os/developer-information-for-chrome-os-devices.

      Persisting the board's Vital Product Data (VPD):

      The firmware in all ChromeOS devices contains a section (RO_VPD) which stores board-specific data, like the serial number, localization settings, and on many devices which have an Ethernet port, the LAN MAC address as well. When flashing via the Firmware Utility Script, the script will automatically extract this from the running firmware and inject it into the firmware to be flashed, so the device serial, LAN MAC address, etc are all maintained. Without this, the device will use a default/generic LAN MAC address set by coreboot. While not ideal, this is only really an issue if two or more of the same device are on the same LAN segment (or you're statically assigning IP addresses based on MAC). But for completeness, if flashing the UEFI firmware or shellball ROM, we'll extract the VPD (either from the board itself or a backup made by the script) and inject it into the firmware to be flashed.

    27. IMPORTANT NOTE: you don't need to do this if flashing a stock firmware backup created by the Firmware Utility Script; that image already contains the VPD.
    28. For both the options below, we'll need to use the cbfstool (coreboot filesystem) binary, so let's download/extract that:
    29. wget https://mrchromebox.tech/files/util/cbfstool.tar.gz && tar -zxf cbfstool.tar.gz

    30. Option 1: extract VPD from the firmware on device:
    31. sudo flashrom -p ch341a_spi -r badflash.rom
      ./cbfstool badflash.rom read -r RO_VPD -f vpd.bin

    32. Option 2: extract VPD from stock firmware backup created by Firmware Utility Script (this assumes the file has been copied into working directory):
    33. ./cbfstool stock-firmware--.rom read -r RO_VPD -f vpd.bin

    34. Then we inject the VPD into the firmware image to be flashed.
    35. ./cbfstool write -r RO_VPD -f vpd.bin

    36. Now the firmware image is ready to be flashed, and will maintain the device's unique serial, LAN MAC address, etc.
    37. Flashing your device

      Now that everything is prepared, it is time to flash the device. To be thorough, we'll perform a 2nd verification after flashing to ensure the integrity of the flashed firmware.

    38. Flash the firmware:
    39. If flashing your own backup created by the Firmware Utility Script (or any backup made from a live system), use:

      sudo flashrom -p ch341a_spi --ifd -i bios -w

      or otherwise use:

      sudo flashrom -p ch341a_spi -w

      Where is the name of your backup file, UEFI firmware file, or shellball firmware file. This will usually take 30 seconds to 90 seconds to complete; flashrom will first read the flash chip, determine which sectors differ, erase those sectors, write the new data, then verify the data written.

    40. Verify the firmware:
    41. Even though flashrom does this as part of the write process, verifying the entire flash chip is quick and an easy way to ensure everything went as it should: As before, if flashing your own backup created by the Firmware Utility Script (or any backup made from a live system), use:

      sudo flashrom -p ch341a_spi --ifd -i bios -v

      or otherwise use:

      sudo flashrom -p ch341a_spi -v

      using the same filename as before. If the verification passes, then disconnect the CH341a from the host machine, and then remove the chip clip.

      CLEANING UP: Reassembly is the reverse of disassembly. Reconnect the internal battery and replace the bottom cover. Flip over the device, connect the external power, press the power button, and cross your fingers :)

    Flashing/Unbricking with a Suzy-Q cable

    Requirements

  • A ChromeOS device with CCD (closed-case debugging) enabled on one of the USB-C ports. If your device uses CR50 for the firmware write protection, then it has CCD capability.
    IMPORTANT NOTE: : These instructions do not apply to any device which is locked/managed -- enterprise/edu enrollment locks out CCD functionality completely.
  • A USB-C debug cable ( aka Suzy-Q cable )
  • The device must have the CCD flags factory reset (as per my instructions to disable firmware write protection), or the battery must be unplugged/disconnected from the mainboard.
  • Another device running Linux, preferably a current Debian/Ubuntu-based distro
    1. Instructions

      Hardware Disassembly

      As above, this is only needed if you failed to factory reset the CCD flags as part of disabling the device's firmware write-protection. While this is somewhat device-specific, the main points are the same:

    2. - Disconnect all external power - Remove bottom cover (screws are often located under rubber feet or strips) - Disconnect the internal battery.
    3. Preparing to flash

      Most any 64-bit Debian/Ubuntu based distro should work here, but this guide will use a Ubuntu 2304 live session booted from USB (since its version of flashrom supports Suzy-Q flashing).

      So let's get to it:

    4. Boot your Linux environment (Ubuntu 2304 live USB or later recommended) Connect to WiFi/internet Open a (non-root) terminal/shell window, change to home directory
    5. cd;

    6. Install flashrom via apt:
    7. sudo apt update
      sudo apt install flashrom

    8. Connect the USB-C end of the Suzy-Q cable to the CCD port on your ChromeOS device (usually left USB-C port) and the USB-A end to your Linux device Verify the cable is properly connected:
    9. ls /dev/ttyUSB*

      This command should return 3 items: ttyUSB0, ttyUSB1, and ttyUSB2 If not, then your cable is connected to the wrong port or is upside down; adjust and repeat comment until the output is as expected.

    10. Set the CCD state to open:
    11. echo "ccd open" | sudo tee -a /dev/ttyUSB0 > /dev/null

    12. Determine file to be flashed:
    13. Depending on your desired use for the device, you have 3 options for flashing:

    14. - The backup file of the stock firmware created by my Firmware Utility Script
    15. If using this, simply copy the file from USB into the home directory of the live USB user
    16. - The custom UEFI firmware for the device
    17. If you were flashing the UEFI firmware when things went sideways, then that's the easiest way to proceed. You can download the UEFI firmware for your device by examining the sources.sh file from the Firmware Utility Script GitHub repository. Simply concatenate the device-specific filename to the Full ROM base path:
    18. wget

    19. eg for the Acer Chromebook 14 CB3-431 (EDGAR):
    20. wget https://mrchromebox.tech/files/firmware/full_rom/coreboot_tiano-edgar-mrchromebox_20180827.rom

    21. Don't forget to get the sha1 file for verification:
    22. wget https://mrchromebox.tech/files/firmware/full_rom/coreboot_tiano-edgar-mrchromebox_20180827.rom.sha1

    23. Then verify the download:
    24. sha1sum -c coreboot_tiano-edgar-mrchromebox_20180827.rom.sha1

    25. - The shellball firmware for the device As with the UEFI firmware above, the shellball rom can be downloaded by concatenating the shellball base path with the device-specific filename:
    26. wget /shellball..bin

    27. eg for the Acer Chromebook 14 CB3-431 (EDGAR):
    28. wget https://mrchromebox.tech/files/firmware/shellball/shellball.edgar.bin

      If you're not sure which file to use for your device / don't know your device's board name, you can reference: https://mrchromebox.tech/#devices and/or https://www.chromium.org/chromium-os/developer-information-for-chrome-os-devices.

      Persisting the board's Vital Product Data (VPD):

      The firmware in all ChromeOS devices contains a section (RO_VPD) which stores board-specific data, like the serial number, localization settings, and on many devices which have an Ethernet port, the LAN MAC address as well. When flashing via the Firmware Utility Script, the script will automatically extract this from the running firmware and inject it into the firmware to be flashed, so the device serial number, LAN MAC address, etc are all maintained. Without this, the device will use a default/generic LAN MAC address set by coreboot. While not ideal, this is only really an issue if two or more of the same device are on the same LAN segment (or you're statically assigning IP addresses based on MAC). But for completeness, if flashing the UEFI firmware or shellball ROM, we'll extract the VPD (either from the board itself or a backup made by the script) and inject it into the firmware to be flashed.

    29. IMPORTANT NOTE: you don't need to do this if flashing a stock firmware backup created by the Firmware Utility Script; that image already contains the VPD.
    30. For both the options below, we'll need to use the cbfstool (coreboot filesystem) binary, so let's download/extract that:
    31. wget https://mrchromebox.tech/files/util/cbfstool.tar.gz && tar -zxf cbfstool.tar.gz

    32. Option 1: extract VPD from the firmware on device:
    33. sudo flashrom -p raiden_debug_spi:target=AP -r badflash.rom
      ./cbfstool badflash.rom read -r RO_VPD -f vpd.bin

    34. Option 2: extract VPD from stock firmware backup created by Firmware Utility Script (this assumes the file has been copied into working directory and replace the '{}' symbols with '' symbols excluding the '/'):
    35. ./cbfstool stock-firmware-{devicename}-{date}.rom read -r RO_VPD -f vpd.bin

    36. Then we inject the VPD into the firmware image to be flashed. (replace the '{}' symbols with '' symbols excluding the '/')
    37. ./cbfstool {shellball ROM/UEFI Full ROM filename} write -r RO_VPD -f vpd.bin

    38. Now the firmware image is ready to be flashed, and will maintain the device's unique serial, LAN MAC address, etc.
    39. Flashing your device

      Now that everything is prepared, it is time to flash the device.

    40. Flash the firmware:
    41. If flashing your own backup created by the Firmware Utility Script (or any backup made from a live system), use:

      sudo flashrom -p raiden_debug_spi:target=AP -i SI_BIOS -w

      or otherwise, if using a UEFI Full ROM image or shellball/recovery-extracted image, use:

      sudo flashrom -p raiden_debug_spi:target=AP -w

      Where is the name of your backup file, UEFI firmware file, or shellball firmware file. This will usually take 3-5 mins to complete; flashrom will first read the flash chip, determine which sectors differ, erase those sectors, write the new data, then verify the data written. The initial CCD setup make take a minute or so and not show any progress.

      CLEANING UP: Once flashing is complete, disconnect the Suzy-Q cable. If the internal battery was not disconnected, the device will likely reboot as soon as flashing has completed. If the internal battery was disconnected, reconnect it and replace the bottom cover. Flip over the device, connect external power, press the power button, and cross your fingers :)