mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-06-13 15:03:58 +03:00
After increase boot and recovery partition userdata was not resize.
so on VIM3 16GB and VIM3L `fastboot oem format` or `gpt write mmc 2
$partitions` fail because end of last partition is outside of eMMC
size.
Remove 64MB on userdata partitions to fix it.
Fixes: ce138d9742 ("configs: khadas-vim3{l}: Increase boot/recovery partition size")
Signed-off-by: Guillaume La Roque <glaroque@baylibre.com>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
Link: https://lore.kernel.org/r/20241017-adnroidv2-v1-3-781c939902c9@baylibre.com
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
51 lines
1.7 KiB
C
51 lines
1.7 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Configuration for the khadas VIM3 Android
|
|
*
|
|
* Copyright (C) 2021 Baylibre, SAS
|
|
* Author: Guillaume LA ROQUE <glaroque@baylibre.com>
|
|
*/
|
|
|
|
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
#define LOGO_UUID "43a3305d-150f-4cc9-bd3b-38fca8693846;"
|
|
#define ROOT_UUID "ddb8c3f6-d94d-4394-b633-3134139cc2e0;"
|
|
|
|
#if defined(CONFIG_CMD_BCB) && defined(CONFIG_ANDROID_AB)
|
|
#define PARTS_DEFAULT \
|
|
"uuid_disk=${uuid_gpt_disk};" \
|
|
"name=logo,start=512K,size=2M,uuid=" LOGO_UUID \
|
|
"name=misc,size=512K,uuid=${uuid_gpt_misc};" \
|
|
"name=dtbo_a,size=8M,uuid=${uuid_gpt_dtbo_a};" \
|
|
"name=dtbo_b,size=8M,uuid=${uuid_gpt_dtbo_b};" \
|
|
"name=vbmeta_a,size=512K,uuid=${uuid_gpt_vbmeta_a};" \
|
|
"name=vbmeta_b,size=512K,uuid=${uuid_gpt_vbmeta_b};" \
|
|
"name=boot_a,size=64M,bootable,uuid=${uuid_gpt_boot_a};" \
|
|
"name=boot_b,size=64M,bootable,uuid=${uuid_gpt_boot_b};" \
|
|
"name=super,size=3072M,uuid=${uuid_gpt_super};" \
|
|
"name=userdata,size=11218M,uuid=${uuid_gpt_userdata};" \
|
|
"name=rootfs,size=-,uuid=" ROOT_UUID
|
|
#else
|
|
#define PARTS_DEFAULT \
|
|
"uuid_disk=${uuid_gpt_disk};" \
|
|
"name=logo,start=512K,size=2M,uuid=" LOGO_UUID \
|
|
"name=misc,size=512K,uuid=${uuid_gpt_misc};" \
|
|
"name=dtbo,size=8M,uuid=${uuid_gpt_dtbo};" \
|
|
"name=vbmeta,size=512K,uuid=${uuid_gpt_vbmeta};" \
|
|
"name=boot,size=64M,bootable,uuid=${uuid_gpt_boot};" \
|
|
"name=recovery,size=64M,uuid=${uuid_gpt_recovery};" \
|
|
"name=cache,size=256M,uuid=${uuid_gpt_cache};" \
|
|
"name=super,size=1792M,uuid=${uuid_gpt_super};" \
|
|
"name=userdata,size=12722M,uuid=${uuid_gpt_userdata};" \
|
|
"name=rootfs,size=-,uuid=" ROOT_UUID
|
|
#endif
|
|
|
|
#define EXTRA_ANDROID_ENV_SETTINGS \
|
|
"board=vim3\0" \
|
|
"board_name=vim3\0" \
|
|
|
|
#include <configs/meson64_android.h>
|
|
|
|
#endif /* __CONFIG_H */
|