diff options
author | Tom Rini <trini@ti.com> | 2014-12-18 12:37:18 -0500 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-12-18 12:37:18 -0500 |
commit | 7a7ffedabd29adde9cb6ebe6066256c4cf8b77af (patch) | |
tree | 6122c4c1e597e26b0c0a3ae706086cf9c2ba880e /include | |
parent | d8bec60c1b0de7770f9b56ad092ab9be801d99af (diff) | |
parent | 0ff7e585df83470139739533bdbf41114f395470 (diff) | |
download | u-boot-imx-7a7ffedabd29adde9cb6ebe6066256c4cf8b77af.zip u-boot-imx-7a7ffedabd29adde9cb6ebe6066256c4cf8b77af.tar.gz u-boot-imx-7a7ffedabd29adde9cb6ebe6066256c4cf8b77af.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-usb
Diffstat (limited to 'include')
-rw-r--r-- | include/dfu.h | 3 | ||||
-rw-r--r-- | include/g_dnl.h | 4 | ||||
-rw-r--r-- | include/part.h | 20 |
3 files changed, 24 insertions, 3 deletions
diff --git a/include/dfu.h b/include/dfu.h index f1a71c7..c27856c 100644 --- a/include/dfu.h +++ b/include/dfu.h @@ -150,9 +150,6 @@ struct dfu_entity *dfu_get_entity(int alt); char *dfu_extract_token(char** e, int *n); void dfu_trigger_reset(void); int dfu_get_alt(char *name); -bool dfu_detach(void); -void dfu_trigger_detach(void); -void dfu_clear_detach(void); int dfu_init_env_entities(char *interface, char *devstr); unsigned char *dfu_get_buf(struct dfu_entity *dfu); unsigned char *dfu_free_buf(void); diff --git a/include/g_dnl.h b/include/g_dnl.h index 1b1b35e..4eeb5e4 100644 --- a/include/g_dnl.h +++ b/include/g_dnl.h @@ -39,4 +39,8 @@ int g_dnl_register(const char *s); void g_dnl_unregister(void); void g_dnl_set_serialnumber(char *); +bool g_dnl_detach(void); +void g_dnl_trigger_detach(void); +void g_dnl_clear_detach(void); + #endif /* __G_DOWNLOAD_H_ */ diff --git a/include/part.h b/include/part.h index a496a4a..8ea9b30 100644 --- a/include/part.h +++ b/include/part.h @@ -244,6 +244,26 @@ int gpt_fill_header(block_dev_desc_t *dev_desc, gpt_header *gpt_h, */ int gpt_restore(block_dev_desc_t *dev_desc, char *str_disk_guid, disk_partition_t *partitions, const int parts_count); + +/** + * is_valid_gpt_buf() - Ensure that the Primary GPT information is valid + * + * @param dev_desc - block device descriptor + * @param buf - buffer which contains the MBR and Primary GPT info + * + * @return - '0' on success, otherwise error + */ +int is_valid_gpt_buf(block_dev_desc_t *dev_desc, void *buf); + +/** + * write_mbr_and_gpt_partitions() - write MBR, Primary GPT and Backup GPT + * + * @param dev_desc - block device descriptor + * @param buf - buffer which contains the MBR and Primary GPT info + * + * @return - '0' on success, otherwise error + */ +int write_mbr_and_gpt_partitions(block_dev_desc_t *dev_desc, void *buf); #endif #endif /* _PART_H */ |