summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMattijs Korpershoek <[email protected]>2021-07-29 09:21:11 +0200
committerNeil Armstrong <[email protected]>2021-07-29 11:37:20 +0200
commitf2cd6487877db9bba8e07abcb36decafcad9ae2a (patch)
tree781e8b47d4ecc53fb4cc5d2ce0350978e4cccd3f
parent75be1ebf2ec09fdbd7562c2b7a86be302cdbd04d (diff)
configs: meson64_android: use boot part label instead of index
To boot Android, we read the gpt and assume that the partition with index "1" will be the "boot" partition. This might not always be the case, as there are no requirements from Android on the partition order. However, Android does seem to use the "boot" label quite a lot on their public documentation [1] Load the boot partition by label instead of by index [1] https://source.android.com/devices/bootloader/partitions Signed-off-by: Guillaume La Roque <[email protected]> Signed-off-by: Mattijs Korpershoek <[email protected]> Acked-by: Neil Armstrong <[email protected]> Signed-off-by: Neil Armstrong <[email protected]>
-rw-r--r--include/configs/meson64_android.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/configs/meson64_android.h b/include/configs/meson64_android.h
index 4027a7fe0db..e22f05c8899 100644
--- a/include/configs/meson64_android.h
+++ b/include/configs/meson64_android.h
@@ -9,6 +9,9 @@
#ifndef __MESON64_ANDROID_CONFIG_H
#define __MESON64_ANDROID_CONFIG_H
+#ifndef BOOT_PARTITION
+#define BOOT_PARTITION "boot"
+#endif
#define BOOTENV_DEV_FASTBOOT(devtypeu, devtypel, instance) \
"bootcmd_fastboot=" \
@@ -77,11 +80,11 @@
#define BOOTENV_DEV_SYSTEM(devtypeu, devtypel, instance) \
"bootcmd_system=" \
- "echo Loading Android boot partition...;" \
+ "echo Loading Android " BOOT_PARTITION " partition...;" \
"mmc dev ${mmcdev};" \
"setenv bootargs ${bootargs} console=${console} androidboot.serialno=${serial#};" \
- "part start mmc ${mmcdev} ${bootpart} boot_start;" \
- "part size mmc ${mmcdev} ${bootpart} boot_size;" \
+ "part start mmc ${mmcdev} " BOOT_PARTITION " boot_start;" \
+ "part size mmc ${mmcdev} " BOOT_PARTITION " boot_size;" \
"if mmc read ${loadaddr} ${boot_start} ${boot_size}; then " \
"echo Running Android...;" \
"bootm ${loadaddr};" \
@@ -111,7 +114,6 @@
#define CONFIG_EXTRA_ENV_SETTINGS \
"partitions=" PARTS_DEFAULT "\0" \
"mmcdev=2\0" \
- "bootpart=1\0" \
"logopart=2\0" \
"gpio_recovery=88\0" \
"check_button=gpio input ${gpio_recovery};test $? -eq 0;\0" \