summaryrefslogtreecommitdiff
path: root/include/configs
diff options
context:
space:
mode:
authorfang hui <b31070@freescale.com>2015-12-21 10:30:23 +0800
committerfang hui <hui.fang@freescale.com>2016-04-29 09:30:25 +0800
commit998d8cc04add25c0fb4b11351097ca00de6de8f7 (patch)
treee9301e571114892dd2cc47a2fbd8da59174b465c /include/configs
parentda31fc42b5904ce8d0ffc16097c5a59d89224714 (diff)
downloadu-boot-imx-998d8cc04add25c0fb4b11351097ca00de6de8f7.zip
u-boot-imx-998d8cc04add25c0fb4b11351097ca00de6de8f7.tar.gz
u-boot-imx-998d8cc04add25c0fb4b11351097ca00de6de8f7.tar.bz2
MA-7373 - [brillo]: store slot meta data in a raw partition, no file system.
Partition name change from slotmeta to misc. Read/write raw data on partition misc, not use ext4 file system. Store meta in bootloader_message.slot_suffix, as defined in bootable/recovery/bootloader.h The first 4 bytes of boot_ctl are defined as magic number. Also, modify code to remove warning in drivers/usb/gadget/bootctrl.c warning: implicit declaration of function 'do_read' Signed-off-by: fang hui <b31070@freescale.com>
Diffstat (limited to 'include/configs')
-rw-r--r--include/configs/mx6ul_14x14_evk_brillo.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/configs/mx6ul_14x14_evk_brillo.h b/include/configs/mx6ul_14x14_evk_brillo.h
new file mode 100644
index 0000000..ad1ad93
--- /dev/null
+++ b/include/configs/mx6ul_14x14_evk_brillo.h
@@ -0,0 +1,22 @@
+
+/*
+ * Copyright (C) 2015-2016 Freescale Semiconductor, Inc.
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#ifndef __MX6UL_EVK_BRILLO_H
+#define __MX6UL_EVK_BRILLO_H
+
+#define CONFIG_ANDROID_BOOT_B_PARTITION_MMC 7
+#define CONFIG_ANDROID_SYSTEM_B_PARTITION_MMC 8
+#define CONFIG_ANDROID_MISC_PARTITION_MMC 9
+
+#define CONFIG_CMD_FAT
+#define CONFIG_DOS_PARTITION
+
+#define CONFIG_SYS_BOOTM_LEN 0x1000000
+
+#define CONFIG_CMD_READ
+
+#endif