diff options
author | fang hui <b31070@freescale.com> | 2015-12-21 10:30:23 +0800 |
---|---|---|
committer | fang hui <hui.fang@nxp.com> | 2016-04-11 16:54:09 +0800 |
commit | 4aa04ffbf0c7780ef08e37cb6f539ce6386145cf (patch) | |
tree | e93433f3bd97363261ab9b61bb49e7bcdd9f65e8 /include/configs | |
parent | a652b49194132ea2f9b7f0aabd3623f49ea4a89e (diff) | |
download | u-boot-imx-4aa04ffbf0c7780ef08e37cb6f539ce6386145cf.zip u-boot-imx-4aa04ffbf0c7780ef08e37cb6f539ce6386145cf.tar.gz u-boot-imx-4aa04ffbf0c7780ef08e37cb6f539ce6386145cf.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.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/include/configs/mx6ul_14x14_evk_brillo.h b/include/configs/mx6ul_14x14_evk_brillo.h index 9b2f9e1..ad1ad93 100644 --- a/include/configs/mx6ul_14x14_evk_brillo.h +++ b/include/configs/mx6ul_14x14_evk_brillo.h @@ -1,6 +1,6 @@ /* - * Copyright (C) 2015 Freescale Semiconductor, Inc. + * Copyright (C) 2015-2016 Freescale Semiconductor, Inc. * * SPDX-License-Identifier: GPL-2.0+ */ @@ -10,15 +10,13 @@ #define CONFIG_ANDROID_BOOT_B_PARTITION_MMC 7 #define CONFIG_ANDROID_SYSTEM_B_PARTITION_MMC 8 -#define CONFIG_ANDROID_SLOTMETA_PARTITION_MMC 9 +#define CONFIG_ANDROID_MISC_PARTITION_MMC 9 - -#define CONFIG_CMD_EXT2 -#define CONFIG_CMD_EXT4 -#define CONFIG_CMD_EXT4_WRITE #define CONFIG_CMD_FAT #define CONFIG_DOS_PARTITION #define CONFIG_SYS_BOOTM_LEN 0x1000000 +#define CONFIG_CMD_READ + #endif |