summaryrefslogtreecommitdiff
path: root/include/fsl_fastboot.h
diff options
context:
space:
mode:
authorfang hui <b31070@freescale.com>2015-11-12 14:52:39 +0800
committerfang hui <b31070@freescale.com>2015-11-13 17:00:58 +0800
commit9c723a7d146018be07f49f6162ba761973049b9b (patch)
tree7d7394e027daaaa395367c964cead334681b8db7 /include/fsl_fastboot.h
parent54ea3f2ad69597486ed40a16e47aa41eea8f072b (diff)
downloadu-boot-imx-9c723a7d146018be07f49f6162ba761973049b9b.zip
u-boot-imx-9c723a7d146018be07f49f6162ba761973049b9b.tar.gz
u-boot-imx-9c723a7d146018be07f49f6162ba761973049b9b.tar.bz2
MA-7251 - [evk_6ul]: Support boot conctrol for brillo
brillo need bootlader support boot control. bootlader can choose which slot(partition) to boot based on it's tactic. The commit support boot control for evk6ul Signed-off-by: fang hui <b31070@freescale.com>
Diffstat (limited to 'include/fsl_fastboot.h')
-rw-r--r--include/fsl_fastboot.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/fsl_fastboot.h b/include/fsl_fastboot.h
index 5a38d99..177c99a 100644
--- a/include/fsl_fastboot.h
+++ b/include/fsl_fastboot.h
@@ -33,11 +33,22 @@
#define FASTBOOT_MMC_USER_PARTITION_ID 0
#define FASTBOOT_MMC_NONE_PARTITION_ID -1
+#ifdef CONFIG_BRILLO_SUPPORT
+#define FASTBOOT_PARTITION_BOOT_A "boot_a"
+#define FASTBOOT_PARTITION_RECOVERY "recovery"
+#define FASTBOOT_PARTITION_SYSTEM_A "system_a"
+#define FASTBOOT_PARTITION_BOOTLOADER "bootloader"
+#define FASTBOOT_PARTITION_DATA "data"
+#define FASTBOOT_PARTITION_BOOT_B "boot_b"
+#define FASTBOOT_PARTITION_SYSTEM_B "system_b"
+#define FASTBOOT_PARTITION_SLOTMETA "slotmeta"
+#else
#define FASTBOOT_PARTITION_BOOT "boot"
#define FASTBOOT_PARTITION_RECOVERY "recovery"
#define FASTBOOT_PARTITION_SYSTEM "system"
#define FASTBOOT_PARTITION_BOOTLOADER "bootloader"
#define FASTBOOT_PARTITION_DATA "data"
+#endif
enum {
DEV_SATA,
@@ -169,4 +180,6 @@ void save_parts_values(struct fastboot_ptentry *ptn,
int check_parts_values(struct fastboot_ptentry *ptn);
#endif /*CONFIG_FASTBOOT_STORAGE_NAND*/
+int fastboot_tx_write_str(const char *buffer);
+
#endif /* FSL_FASTBOOT_H */