> For the complete documentation index, see [llms.txt](https://theiotlearninginitiative.gitbook.io/embedded-linux/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://theiotlearninginitiative.gitbook.io/embedded-linux/initialization/upgrade.md).

# Upgrade

## Upgrade

## DFU-Util

> dfu-util is a host side implementation of the DFU 1.0 and DFU 1.1 specifications of the USB forum. DFU is intended to download and upload firmware to/from devices connected over USB. It ranges from small devices like micro-controller boards to mobile phones. Using dfu-util you can download firmware to your DFU-enabled device or upload firmware from it. [Homepage](http://dfu-util.sourceforge.net/)

* [SeeedStudio DFU-Util](http://www.seeedstudio.com/wiki/Dfu-util)
* [Flasheable Image](https://seven.centos.org/2015/08/a-flashable-centos-image-for-the-intel-edison/)

```bash
user@workstation:~$ sudo dfu-util -l -d 8087:0a99
dfu-util 0.8

Copyright 2005-2009 Weston Schmidt, Harald Welte and OpenMoko Inc.
Copyright 2010-2014 Tormod Volden and Stefan Schmidt
This program is Free Software and has ABSOLUTELY NO WARRANTY
Please report bugs to dfu-util@lists.gnumonks.org

Found DFU: [8087:0a99] ver=9999, devnum=14, cfg=1, intf=0, alt=11, name="initrd", serial="UNKNOWN"
Found DFU: [8087:0a99] ver=9999, devnum=14, cfg=1, intf=0, alt=10, name="vmlinuz", serial="UNKNOWN"
Found DFU: [8087:0a99] ver=9999, devnum=14, cfg=1, intf=0, alt=9, name="home", serial="UNKNOWN"
Found DFU: [8087:0a99] ver=9999, devnum=14, cfg=1, intf=0, alt=8, name="update", serial="UNKNOWN"
Found DFU: [8087:0a99] ver=9999, devnum=14, cfg=1, intf=0, alt=7, name="rootfs", serial="UNKNOWN"
Found DFU: [8087:0a99] ver=9999, devnum=14, cfg=1, intf=0, alt=6, name="boot", serial="UNKNOWN"
Found DFU: [8087:0a99] ver=9999, devnum=14, cfg=1, intf=0, alt=5, name="u-boot-env1", serial="UNKNOWN"
Found DFU: [8087:0a99] ver=9999, devnum=14, cfg=1, intf=0, alt=4, name="u-boot1", serial="UNKNOWN"
Found DFU: [8087:0a99] ver=9999, devnum=14, cfg=1, intf=0, alt=3, name="u-boot-env0", serial="UNKNOWN"
Found DFU: [8087:0a99] ver=9999, devnum=14, cfg=1, intf=0, alt=2, name="u-boot0", serial="UNKNOWN"
Found DFU: [8087:0a99] ver=9999, devnum=14, cfg=1, intf=0, alt=1, name="ifwib00", serial="UNKNOWN"
Found DFU: [8087:0a99] ver=9999, devnum=14, cfg=1, intf=0, alt=0, name="ifwi00", serial="UNKNOWN"
```

```bash
user@workstation:~/Downloads/latestedison$ dfu-util -d 8087:0a99 -a rootfs -D edison-image-edison.ext4 
dfu-util 0.8

Copyright 2005-2009 Weston Schmidt, Harald Welte and OpenMoko Inc.
Copyright 2010-2014 Tormod Volden and Stefan Schmidt
This program is Free Software and has ABSOLUTELY NO WARRANTY
Please report bugs to dfu-util@lists.gnumonks.org

dfu-util: Invalid DFU suffix signature
dfu-util: A valid DFU suffix will be required in a future dfu-util release!!!
dfu-util: No DFU capable USB device available
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://theiotlearninginitiative.gitbook.io/embedded-linux/initialization/upgrade.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
