All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] arm: ti: boot: Remove legacy Android partitions
@ 2019-01-04 20:09 Sam Protsenko
  2019-01-04 20:11 ` Bajjuri, Praneeth
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Sam Protsenko @ 2019-01-04 20:09 UTC (permalink / raw)
  To: u-boot

Remove unused Android partitions:
  - efs, crypto, cache: we don't use it anymore (images are not built
    in AOSP
  - ipu1, ipu2: IPU firmware is now a part of vendor image and doesn't
    reside as a separate partition

While at it, rename "reserved" partition to "uboot-env", as it's
actually stores U-Boot environment.

Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
---
 include/environment/ti/boot.h | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/include/environment/ti/boot.h b/include/environment/ti/boot.h
index 86ff6d3ea7..05bdbbc23e 100644
--- a/include/environment/ti/boot.h
+++ b/include/environment/ti/boot.h
@@ -35,17 +35,12 @@
 	"uuid_disk=${uuid_gpt_disk};" \
 	"name=xloader,start=128K,size=256K,uuid=${uuid_gpt_xloader};" \
 	"name=bootloader,size=2048K,uuid=${uuid_gpt_bootloader};" \
-	"name=reserved,start=2432K,size=256K,uuid=${uuid_gpt_reserved};" \
+	"name=uboot-env,start=2432K,size=256K,uuid=${uuid_gpt_reserved};" \
 	"name=misc,size=128K,uuid=${uuid_gpt_misc};" \
-	"name=efs,size=16M,uuid=${uuid_gpt_efs};" \
-	"name=crypto,size=16K,uuid=${uuid_gpt_crypto};" \
 	"name=recovery,size=40M,uuid=${uuid_gpt_recovery};" \
 	"name=boot,size=10M,uuid=${uuid_gpt_boot};" \
 	"name=system,size=1024M,uuid=${uuid_gpt_system};" \
 	"name=vendor,size=256M,uuid=${uuid_gpt_vendor};" \
-	"name=cache,size=256M,uuid=${uuid_gpt_cache};" \
-	"name=ipu1,size=1M,uuid=${uuid_gpt_ipu1};" \
-	"name=ipu2,size=1M,uuid=${uuid_gpt_ipu2};" \
 	VBMETA_PART \
 	"name=userdata,size=-,uuid=${uuid_gpt_userdata}"
 #endif /* PARTS_DEFAULT */
-- 
2.19.2

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH] arm: ti: boot: Remove legacy Android partitions
  2019-01-04 20:09 [U-Boot] [PATCH] arm: ti: boot: Remove legacy Android partitions Sam Protsenko
@ 2019-01-04 20:11 ` Bajjuri, Praneeth
  2019-01-10  2:32 ` [U-Boot] " Tom Rini
  2019-07-16  6:11 ` [U-Boot] [PATCH] " Lokesh Vutla
  2 siblings, 0 replies; 4+ messages in thread
From: Bajjuri, Praneeth @ 2019-01-04 20:11 UTC (permalink / raw)
  To: u-boot


On 1/4/2019 2:09 PM, Sam Protsenko wrote:
> Remove unused Android partitions:
>    - efs, crypto, cache: we don't use it anymore (images are not built
>      in AOSP
>    - ipu1, ipu2: IPU firmware is now a part of vendor image and doesn't
>      reside as a separate partition
>
> While at it, rename "reserved" partition to "uboot-env", as it's
> actually stores U-Boot environment.
>
> Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
> ---
>   include/environment/ti/boot.h | 7 +------
>   1 file changed, 1 insertion(+), 6 deletions(-)
>
> diff --git a/include/environment/ti/boot.h b/include/environment/ti/boot.h
> index 86ff6d3ea7..05bdbbc23e 100644
> --- a/include/environment/ti/boot.h
> +++ b/include/environment/ti/boot.h
> @@ -35,17 +35,12 @@
>   	"uuid_disk=${uuid_gpt_disk};" \
>   	"name=xloader,start=128K,size=256K,uuid=${uuid_gpt_xloader};" \
>   	"name=bootloader,size=2048K,uuid=${uuid_gpt_bootloader};" \
> -	"name=reserved,start=2432K,size=256K,uuid=${uuid_gpt_reserved};" \
> +	"name=uboot-env,start=2432K,size=256K,uuid=${uuid_gpt_reserved};" \
>   	"name=misc,size=128K,uuid=${uuid_gpt_misc};" \
> -	"name=efs,size=16M,uuid=${uuid_gpt_efs};" \
> -	"name=crypto,size=16K,uuid=${uuid_gpt_crypto};" \
>   	"name=recovery,size=40M,uuid=${uuid_gpt_recovery};" \
>   	"name=boot,size=10M,uuid=${uuid_gpt_boot};" \
>   	"name=system,size=1024M,uuid=${uuid_gpt_system};" \
>   	"name=vendor,size=256M,uuid=${uuid_gpt_vendor};" \
> -	"name=cache,size=256M,uuid=${uuid_gpt_cache};" \
> -	"name=ipu1,size=1M,uuid=${uuid_gpt_ipu1};" \
> -	"name=ipu2,size=1M,uuid=${uuid_gpt_ipu2};" \
>   	VBMETA_PART \
>   	"name=userdata,size=-,uuid=${uuid_gpt_userdata}"
>   #endif /* PARTS_DEFAULT */

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] arm: ti: boot: Remove legacy Android partitions
  2019-01-04 20:09 [U-Boot] [PATCH] arm: ti: boot: Remove legacy Android partitions Sam Protsenko
  2019-01-04 20:11 ` Bajjuri, Praneeth
@ 2019-01-10  2:32 ` Tom Rini
  2019-07-16  6:11 ` [U-Boot] [PATCH] " Lokesh Vutla
  2 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2019-01-10  2:32 UTC (permalink / raw)
  To: u-boot

On Fri, Jan 04, 2019 at 10:09:08PM +0200, Sam Protsenko wrote:

> Remove unused Android partitions:
>   - efs, crypto, cache: we don't use it anymore (images are not built
>     in AOSP
>   - ipu1, ipu2: IPU firmware is now a part of vendor image and doesn't
>     reside as a separate partition
> 
> While at it, rename "reserved" partition to "uboot-env", as it's
> actually stores U-Boot environment.
> 
> Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
> Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190109/7af49f99/attachment.sig>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [U-Boot] [PATCH] arm: ti: boot: Remove legacy Android partitions
  2019-01-04 20:09 [U-Boot] [PATCH] arm: ti: boot: Remove legacy Android partitions Sam Protsenko
  2019-01-04 20:11 ` Bajjuri, Praneeth
  2019-01-10  2:32 ` [U-Boot] " Tom Rini
@ 2019-07-16  6:11 ` Lokesh Vutla
  2 siblings, 0 replies; 4+ messages in thread
From: Lokesh Vutla @ 2019-07-16  6:11 UTC (permalink / raw)
  To: u-boot



On 05/01/19 1:39 AM, Sam Protsenko wrote:
> Remove unused Android partitions:
>   - efs, crypto, cache: we don't use it anymore (images are not built
>     in AOSP
>   - ipu1, ipu2: IPU firmware is now a part of vendor image and doesn't
>     reside as a separate partition
> 
> While at it, rename "reserved" partition to "uboot-env", as it's
> actually stores U-Boot environment.
> 
> Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>


Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>

Thanks and regards,
Lokesh

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-07-16  6:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-04 20:09 [U-Boot] [PATCH] arm: ti: boot: Remove legacy Android partitions Sam Protsenko
2019-01-04 20:11 ` Bajjuri, Praneeth
2019-01-10  2:32 ` [U-Boot] " Tom Rini
2019-07-16  6:11 ` [U-Boot] [PATCH] " Lokesh Vutla

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.