All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Mattijs Korpershoek" <mkorpershoek@baylibre.com>
To: Neil Armstrong <narmstrong@baylibre.com>
Cc: u-boot-amlogic@groups.io, u-boot@lists.denx.de,
	Guillaume La Roque <glaroque@baylibre.com>
Subject: Re: [PATCH 5/5] configs: khadas-vim3{l}_android_ab: enable A/B support
Date: Mon, 22 Nov 2021 10:54:00 +0100	[thread overview]
Message-ID: <878rxgecsn.fsf@baylibre.com> (raw)
In-Reply-To: <c1056a56-2f5a-c453-68e7-d7352c0108ff@baylibre.com>

Hi Neil,

Thank you for your review.

Neil Armstrong <narmstrong@baylibre.com> writes:

> Hi,
>
> On 19/11/2021 11:08, Mattijs Korpershoek wrote:
>> meson64_android.h also relies on CMD_AB_SELECT so enable that as well.
>> 
>> Signed-off-by: Guillaume La Roque <glaroque@baylibre.com>
>> Signed-off-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
>> ---
>>  configs/khadas-vim3_android_ab_defconfig  |  2 ++
>>  configs/khadas-vim3l_android_ab_defconfig |  2 ++
>>  include/configs/khadas-vim3_android.h     | 16 ++++++++++++++++
>>  include/configs/khadas-vim3l_android.h    | 16 ++++++++++++++++
>>  4 files changed, 36 insertions(+)
>> 
>> diff --git a/configs/khadas-vim3_android_ab_defconfig b/configs/khadas-vim3_android_ab_defconfig
>> index 9305a54b1b..88325c37db 100644
>> --- a/configs/khadas-vim3_android_ab_defconfig
>> +++ b/configs/khadas-vim3_android_ab_defconfig
>> @@ -17,6 +17,7 @@ CONFIG_OF_BOARD_SETUP=y
>>  # CONFIG_DISPLAY_CPUINFO is not set
>>  CONFIG_MISC_INIT_R=y
>>  CONFIG_AVB_VERIFY=y
>> +CONFIG_ANDROID_AB=y
>>  # CONFIG_CMD_BDI is not set
>>  CONFIG_CMD_ADTIMG=y
>>  CONFIG_CMD_ABOOTIMG=y
>> @@ -33,6 +34,7 @@ CONFIG_CMD_SPI=y
>>  CONFIG_CMD_USB=y
>>  CONFIG_CMD_USB_MASS_STORAGE=y
>>  # CONFIG_CMD_SETEXPR is not set
>> +CONFIG_CMD_AB_SELECT=y
>>  CONFIG_CMD_REGULATOR=y
>>  CONFIG_CMD_AVB=y
>>  CONFIG_OF_CONTROL=y
>> diff --git a/configs/khadas-vim3l_android_ab_defconfig b/configs/khadas-vim3l_android_ab_defconfig
>> index 5eed79b263..608b54dca2 100644
>> --- a/configs/khadas-vim3l_android_ab_defconfig
>> +++ b/configs/khadas-vim3l_android_ab_defconfig
>> @@ -17,6 +17,7 @@ CONFIG_OF_BOARD_SETUP=y
>>  # CONFIG_DISPLAY_CPUINFO is not set
>>  CONFIG_MISC_INIT_R=y
>>  CONFIG_AVB_VERIFY=y
>> +CONFIG_ANDROID_AB=y
>>  # CONFIG_CMD_BDI is not set
>>  CONFIG_CMD_ADTIMG=y
>>  CONFIG_CMD_ABOOTIMG=y
>> @@ -33,6 +34,7 @@ CONFIG_CMD_SPI=y
>>  CONFIG_CMD_USB=y
>>  CONFIG_CMD_USB_MASS_STORAGE=y
>>  # CONFIG_CMD_SETEXPR is not set
>> +CONFIG_CMD_AB_SELECT=y
>>  CONFIG_CMD_REGULATOR=y
>>  CONFIG_CMD_AVB=y
>>  CONFIG_OF_CONTROL=y
>> diff --git a/include/configs/khadas-vim3_android.h b/include/configs/khadas-vim3_android.h
>> index a6f6dd0a7a..da6adf6c41 100644
>> --- a/include/configs/khadas-vim3_android.h
>> +++ b/include/configs/khadas-vim3_android.h
>> @@ -12,6 +12,21 @@
>>  #define LOGO_UUID "43a3305d-150f-4cc9-bd3b-38fca8693846;"
>>  #define ROOT_UUID "ddb8c3f6-d94d-4394-b633-3134139cc2e0;"
>>  
>> +#if defined(CONFIG_CMD_AB_SELECT)
>> +#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=32M,bootable,uuid=${uuid_gpt_boot_a};" \
>> +	"name=boot_b,size=32M,bootable,uuid=${uuid_gpt_boot_b};" \
>> +	"name=super,size=3072M,uuid=${uuid_gpt_super};" \
>> +	"name=userdata,size=11282M,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 \
>> @@ -24,6 +39,7 @@
>>  	"name=super,size=1792M,uuid=${uuid_gpt_super};" \
>>  	"name=userdata,size=12786M,uuid=${uuid_gpt_userdata};" \
>>  	"name=rootfs,size=-,uuid=" ROOT_UUID
>> +#endif
>>  
>>  #define EXTRA_ANDROID_ENV_SETTINGS \
>>  	"board=vim3\0" \
>> diff --git a/include/configs/khadas-vim3l_android.h b/include/configs/khadas-vim3l_android.h
>> index 7affc3e448..b1768e2d82 100644
>> --- a/include/configs/khadas-vim3l_android.h
>> +++ b/include/configs/khadas-vim3l_android.h
>> @@ -12,6 +12,21 @@
>>  #define LOGO_UUID "43a3305d-150f-4cc9-bd3b-38fca8693846;"
>>  #define ROOT_UUID "ddb8c3f6-d94d-4394-b633-3134139cc2e0;"
>>  
>> +#if defined(CONFIG_CMD_AB_SELECT)
>> +#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=32M,bootable,uuid=${uuid_gpt_boot_a};" \
>> +	"name=boot_b,size=32M,bootable,uuid=${uuid_gpt_boot_b};" \
>> +	"name=super,size=3072M,uuid=${uuid_gpt_super};" \
>> +	"name=userdata,size=11282M,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 \
>> @@ -24,6 +39,7 @@
>>  	"name=super,size=1792M,uuid=${uuid_gpt_super};" \
>>  	"name=userdata,size=12786M,uuid=${uuid_gpt_userdata};" \
>>  	"name=rootfs,size=-,uuid=" ROOT_UUID
>> +#endif
>>  
>>  #define EXTRA_ANDROID_ENV_SETTINGS \
>>  	"board=vim3l\0" \
>> 
>
>
> You should move this khadas-vim3l_android.h change adding AB support before adding defconfig for AB,
> move this patch in position 4 and add CONFIG_*AB*=y in the XXXXX_android_ab_defconfig configs
> you add.
Will do in v2.

>
> Neil

      reply	other threads:[~2021-11-22  9:54 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-19 10:08 [PATCH 0/5] meson64_android: add support for vim3/vim3l boards Mattijs Korpershoek
2021-11-19 10:08 ` [PATCH 1/5] configs: meson64_android: add board specific env settings Mattijs Korpershoek
2021-11-19 10:08 ` [PATCH 2/5] configs: prepare khadas-vim3{l}_android for AOSP support Mattijs Korpershoek
2021-11-19 10:08 ` [PATCH 3/5] boards: meson: add khadas vim3{l} android support Mattijs Korpershoek
2021-11-22  8:18   ` Neil Armstrong
2021-11-22  9:53     ` Mattijs Korpershoek
2021-11-19 10:08 ` [PATCH 4/5] configs: prepare khadas-vim3{l}_ab_android for AOSP support Mattijs Korpershoek
2021-11-19 10:08 ` [PATCH 5/5] configs: khadas-vim3{l}_android_ab: enable A/B support Mattijs Korpershoek
2021-11-22  8:18   ` Neil Armstrong
2021-11-22  9:54     ` Mattijs Korpershoek [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=878rxgecsn.fsf@baylibre.com \
    --to=mkorpershoek@baylibre.com \
    --cc=glaroque@baylibre.com \
    --cc=narmstrong@baylibre.com \
    --cc=u-boot-amlogic@groups.io \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.