diff options
| author | Mattijs Korpershoek <[email protected]> | 2021-11-22 16:22:04 +0100 |
|---|---|---|
| committer | Neil Armstrong <[email protected]> | 2022-01-07 10:12:43 +0100 |
| commit | 4eff7426c9bf7b756546559f75f5ce03c73a28f2 (patch) | |
| tree | ac0e719b6f6537d4fd36c48b2deeede763b2afab /include | |
| parent | ede1f4f29712869b82a987b0c460ac2e321258b2 (diff) | |
configs: meson64_android: add board specific env settings
This allows us to define extra board variables, such as "board" and
"board_name".
Signed-off-by: Guillaume La Roque <[email protected]>
Signed-off-by: Mattijs Korpershoek <[email protected]>
Signed-off-by: Neil Armstrong <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/meson64_android.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/configs/meson64_android.h b/include/configs/meson64_android.h index 7cd1ab03411..56dc9fcb07c 100644 --- a/include/configs/meson64_android.h +++ b/include/configs/meson64_android.h @@ -23,6 +23,10 @@ #define CONTROL_PARTITION "misc" #endif +#ifndef EXTRA_ANDROID_ENV_SETTINGS +#define EXTRA_ANDROID_ENV_SETTINGS "" +#endif + #if defined(CONFIG_CMD_AVB) #define AVB_VERIFY_CHECK \ "if test \"${force_avb}\" -eq 1; then " \ @@ -264,6 +268,7 @@ "fi;" #define CONFIG_EXTRA_ENV_SETTINGS \ + EXTRA_ANDROID_ENV_SETTINGS \ "partitions=" PARTS_DEFAULT "\0" \ "mmcdev=2\0" \ ANDROIDBOOT_GET_CURRENT_SLOT_CMD \ |
