On Fri, Jan 09, 2026 at 12:39:12PM +0530, Balaji Selvanathan wrote: > Enable CONFIG_PARTITION_TYPE_GUID and configure SCSI environment > partition type GUID for QCM6490 and QCS615 board configurations. > This allows these platforms to locate the environment partition > using GPT type GUID instead of unique UUID. > > Signed-off-by: Balaji Selvanathan <[email protected]> > --- > Changes in v2: > - Enable above new config in qcom_qcs615_defconfig and qcm6490_defconfig > > configs/qcm6490_defconfig | 5 +++++ > configs/qcom_qcs615_defconfig | 5 +++++ > 2 files changed, 10 insertions(+) > > diff --git a/configs/qcm6490_defconfig b/configs/qcm6490_defconfig > index 54eb5dedaec..e9932abbcd6 100644 > --- a/configs/qcm6490_defconfig > +++ b/configs/qcm6490_defconfig > @@ -13,3 +13,8 @@ CONFIG_TEXT_BASE=0x9fc00000 > CONFIG_REMAKE_ELF=y > > CONFIG_DEFAULT_DEVICE_TREE="qcom/qcs6490-rb3gen2" > + > +CONFIG_ENV_IS_IN_SCSI=y > +CONFIG_PARTITION_TYPE_GUID=y > +CONFIG_SCSI_ENV_PART_USE_TYPE_GUID=y > +CONFIG_SCSI_ENV_PART_TYPE_GUID="bc0330eb-3410-4951-a617-03898dbe3372"
This GUID belongs to the "logfs" partition. I suppose it's being repurposed for U-Boot environment here. Do you know it's intended usecase as well? -Sumit > diff --git a/configs/qcom_qcs615_defconfig b/configs/qcom_qcs615_defconfig > index 2468267b955..94efa46815b 100644 > --- a/configs/qcom_qcs615_defconfig > +++ b/configs/qcom_qcs615_defconfig > @@ -20,3 +20,8 @@ CONFIG_REMAKE_ELF=y > > # Address where U-Boot will be loaded > CONFIG_TEXT_BASE=0x9fc00000 > + > +CONFIG_ENV_IS_IN_SCSI=y > +CONFIG_PARTITION_TYPE_GUID=y > +CONFIG_SCSI_ENV_PART_USE_TYPE_GUID=y > +CONFIG_SCSI_ENV_PART_TYPE_GUID="bc0330eb-3410-4951-a617-03898dbe3372" > -- > 2.34.1 >

