diff options
author | Marek Szyprowski <m.szyprowski@samsung.com> | 2021-01-21 15:52:05 +0100 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2023-10-17 13:19:30 +0900 |
commit | 1414bf46c86f771e4ea55b9f90fd3e14f57b4157 (patch) | |
tree | 677c486b483af6a4d08a2e6f17ceaff9efbf244b /configs | |
parent | 2f5f248ebaf102bf2fdabcf1adf76504f03e9343 (diff) | |
download | u-boot-1414bf46c86f771e4ea55b9f90fd3e14f57b4157.tar.gz u-boot-1414bf46c86f771e4ea55b9f90fd3e14f57b4157.tar.bz2 u-boot-1414bf46c86f771e4ea55b9f90fd3e14f57b4157.zip |
samsung: tizen_rpi: add support for the MBR command
Enable recently added 'mbr' command and define MBR partition table layout
based on the values from the current sd_fusing_rpi3.sh script.
Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
Change-Id: I25e44f10365f95624cf6b85e09962671cf0c12c0
Diffstat (limited to 'configs')
-rw-r--r-- | configs/rpi_3_32b_defconfig | 1 | ||||
-rw-r--r-- | configs/rpi_3_defconfig | 1 | ||||
-rw-r--r-- | configs/rpi_4_32b_defconfig | 1 | ||||
-rw-r--r-- | configs/rpi_4_defconfig | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/configs/rpi_3_32b_defconfig b/configs/rpi_3_32b_defconfig index 0372fb40fb..4b7195b0cc 100644 --- a/configs/rpi_3_32b_defconfig +++ b/configs/rpi_3_32b_defconfig @@ -21,6 +21,7 @@ CONFIG_FDT_SIMPLEFB=y CONFIG_SYS_PROMPT="U-Boot> " CONFIG_SYS_PBSIZE=1049 CONFIG_CMD_GPIO=y +CONFIG_CMD_MBR=y CONFIG_CMD_MMC=y CONFIG_CMD_USB=y CONFIG_CMD_NFS_DOWNLOAD=y diff --git a/configs/rpi_3_defconfig b/configs/rpi_3_defconfig index 6ec766ae8b..82bf2589bf 100644 --- a/configs/rpi_3_defconfig +++ b/configs/rpi_3_defconfig @@ -20,6 +20,7 @@ CONFIG_FDT_SIMPLEFB=y CONFIG_SYS_PROMPT="U-Boot> " CONFIG_SYS_PBSIZE=1049 CONFIG_CMD_GPIO=y +CONFIG_CMD_MBR=y CONFIG_CMD_MMC=y CONFIG_CMD_USB=y CONFIG_CMD_FS_UUID=y diff --git a/configs/rpi_4_32b_defconfig b/configs/rpi_4_32b_defconfig index 3c46f3b0a4..af3e87bf3f 100644 --- a/configs/rpi_4_32b_defconfig +++ b/configs/rpi_4_32b_defconfig @@ -23,6 +23,7 @@ CONFIG_SYS_PROMPT="U-Boot> " CONFIG_SYS_PBSIZE=1049 CONFIG_CMD_DFU=y CONFIG_CMD_GPIO=y +CONFIG_CMD_MBR=y CONFIG_CMD_MMC=y CONFIG_CMD_PCI=y CONFIG_CMD_USB=y diff --git a/configs/rpi_4_defconfig b/configs/rpi_4_defconfig index 6756ff5358..9bce141315 100644 --- a/configs/rpi_4_defconfig +++ b/configs/rpi_4_defconfig @@ -23,6 +23,7 @@ CONFIG_SYS_PROMPT="U-Boot> " CONFIG_SYS_PBSIZE=1049 CONFIG_CMD_DFU=y CONFIG_CMD_GPIO=y +CONFIG_CMD_MBR=y CONFIG_CMD_MMC=y CONFIG_CMD_PCI=y CONFIG_CMD_USB=y |