barebox/include/usb/fastboot.h
Sascha Hauer 3d5080aae9 USB: gadget: Add Android fastboot support
The Android fastboot protocol Can be used to update firmware and to
issue other lowlevel commands to the bootloader. This adds a
fastboot implementation based on the U-Boot fatboot code.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2014-07-24 08:32:56 +02:00

14 lines
250 B
C

#ifndef _USB_FASTBOOT_H
#define _USB_FASTBOOT_H
#include <linux/types.h>
#include <file-list.h>
#include <usb/composite.h>
struct f_fastboot_opts {
struct usb_function_instance func_inst;
struct file_list *files;
};
#endif /* _USB_FASTBOOT_H */