All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-ti][master][PATCH] conf/machine: use xz over gz for images
@ 2020-01-31 19:34 Andrew F. Davis
  2020-01-31 19:35 ` Denys Dmytriyenko
  0 siblings, 1 reply; 2+ messages in thread
From: Andrew F. Davis @ 2020-01-31 19:34 UTC (permalink / raw)
  To: Denys Dmytriyenko, meta-ti; +Cc: Andrew F . Davis

This compresses better and most machines use this now, lets switch these
remaining machines over.

Signed-off-by: Andrew F. Davis <afd@ti.com>
---
 conf/machine/am3517-evm.conf  | 2 +-
 conf/machine/am37x-evm.conf   | 2 +-
 conf/machine/beagleboard.conf | 2 +-
 conf/machine/omap3evm.conf    | 2 +-
 conf/machine/omap5-evm.conf   | 2 +-
 conf/machine/pandaboard.conf  | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/conf/machine/am3517-evm.conf b/conf/machine/am3517-evm.conf
index 87e3f1e0..c20e2f6a 100644
--- a/conf/machine/am3517-evm.conf
+++ b/conf/machine/am3517-evm.conf
@@ -7,7 +7,7 @@ require conf/machine/include/omap3.inc
 MACHINE_GUI_CLASS = "smallscreen"
 MACHINE_FEATURES += "touchscreen ethernet"
 
-IMAGE_FSTYPES += "ubi tar.gz"
+IMAGE_FSTYPES += "ubi tar.xz"
 EXTRA_IMAGECMD_jffs2 = "-lnp -e 0x20000 -s 2048"
 
 SERIAL_CONSOLES = "115200;ttyS2"
diff --git a/conf/machine/am37x-evm.conf b/conf/machine/am37x-evm.conf
index e9d1838a..a512c8d0 100644
--- a/conf/machine/am37x-evm.conf
+++ b/conf/machine/am37x-evm.conf
@@ -7,7 +7,7 @@ require conf/machine/include/omap3.inc
 MACHINE_GUI_CLASS = "smallscreen"
 MACHINE_FEATURES += "touchscreen ethernet"
 
-IMAGE_FSTYPES += "ubi tar.gz"
+IMAGE_FSTYPES += "ubi tar.xz"
 EXTRA_IMAGECMD_jffs2 = "-lnp -e 0x20000 -s 2048"
 
 KERNEL_DEVICETREE = "omap3-evm-37xx.dtb"
diff --git a/conf/machine/beagleboard.conf b/conf/machine/beagleboard.conf
index 37d23aa7..ee51fd66 100644
--- a/conf/machine/beagleboard.conf
+++ b/conf/machine/beagleboard.conf
@@ -7,7 +7,7 @@ require conf/machine/include/omap3.inc
 # Only has DVI connector for external screen
 MACHINE_GUI_CLASS = "bigscreen"
 
-IMAGE_FSTYPES += "tar.gz ubi"
+IMAGE_FSTYPES += "tar.xz ubi"
 EXTRA_IMAGECMD_jffs2 = "-lnp"
 
 KERNEL_DEVICETREE = "omap3-beagle.dtb omap3-beagle-xm.dtb omap3-beagle-xm-ab.dtb"
diff --git a/conf/machine/omap3evm.conf b/conf/machine/omap3evm.conf
index a7457c04..01808b68 100644
--- a/conf/machine/omap3evm.conf
+++ b/conf/machine/omap3evm.conf
@@ -7,7 +7,7 @@ require conf/machine/include/omap3.inc
 MACHINE_GUI_CLASS = "smallscreen"
 MACHINE_FEATURES += "touchscreen ethernet"
 
-IMAGE_FSTYPES += "jffs2 tar.gz"
+IMAGE_FSTYPES += "jffs2 tar.xz"
 EXTRA_IMAGECMD_jffs2 = "-lnp -e 0x20000 -s 2048"
 
 SERIAL_CONSOLES = "115200;ttyS0"
diff --git a/conf/machine/omap5-evm.conf b/conf/machine/omap5-evm.conf
index 28044cb9..b4cec1a2 100644
--- a/conf/machine/omap5-evm.conf
+++ b/conf/machine/omap5-evm.conf
@@ -4,7 +4,7 @@
 
 require conf/machine/include/omap-a15.inc
 
-IMAGE_FSTYPES += "ubi tar.gz"
+IMAGE_FSTYPES += "ubi tar.xz"
 
 KERNEL_DEVICETREE = "omap5-uevm.dtb"
 
diff --git a/conf/machine/pandaboard.conf b/conf/machine/pandaboard.conf
index edfc612b..4dd6fa29 100644
--- a/conf/machine/pandaboard.conf
+++ b/conf/machine/pandaboard.conf
@@ -6,7 +6,7 @@ require conf/machine/include/omap4.inc
 
 MACHINE_GUI_CLASS = "bigscreen"
 
-IMAGE_FSTYPES += "tar.gz"
+IMAGE_FSTYPES += "tar.xz"
 
 KERNEL_DEVICETREE = "omap4-panda.dtb omap4-panda-a4.dtb omap4-panda-es.dtb"
 
-- 
2.17.1


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

* Re: [meta-ti][master][PATCH] conf/machine: use xz over gz for images
  2020-01-31 19:34 [meta-ti][master][PATCH] conf/machine: use xz over gz for images Andrew F. Davis
@ 2020-01-31 19:35 ` Denys Dmytriyenko
  0 siblings, 0 replies; 2+ messages in thread
From: Denys Dmytriyenko @ 2020-01-31 19:35 UTC (permalink / raw)
  To: Andrew F. Davis; +Cc: meta-ti

On Fri, Jan 31, 2020 at 02:34:26PM -0500, Andrew F. Davis wrote:
> This compresses better and most machines use this now, lets switch these
> remaining machines over.

Perfect, thanks! Will merge this shortly.


> Signed-off-by: Andrew F. Davis <afd@ti.com>
> ---
>  conf/machine/am3517-evm.conf  | 2 +-
>  conf/machine/am37x-evm.conf   | 2 +-
>  conf/machine/beagleboard.conf | 2 +-
>  conf/machine/omap3evm.conf    | 2 +-
>  conf/machine/omap5-evm.conf   | 2 +-
>  conf/machine/pandaboard.conf  | 2 +-
>  6 files changed, 6 insertions(+), 6 deletions(-)
> 
> diff --git a/conf/machine/am3517-evm.conf b/conf/machine/am3517-evm.conf
> index 87e3f1e0..c20e2f6a 100644
> --- a/conf/machine/am3517-evm.conf
> +++ b/conf/machine/am3517-evm.conf
> @@ -7,7 +7,7 @@ require conf/machine/include/omap3.inc
>  MACHINE_GUI_CLASS = "smallscreen"
>  MACHINE_FEATURES += "touchscreen ethernet"
>  
> -IMAGE_FSTYPES += "ubi tar.gz"
> +IMAGE_FSTYPES += "ubi tar.xz"
>  EXTRA_IMAGECMD_jffs2 = "-lnp -e 0x20000 -s 2048"
>  
>  SERIAL_CONSOLES = "115200;ttyS2"
> diff --git a/conf/machine/am37x-evm.conf b/conf/machine/am37x-evm.conf
> index e9d1838a..a512c8d0 100644
> --- a/conf/machine/am37x-evm.conf
> +++ b/conf/machine/am37x-evm.conf
> @@ -7,7 +7,7 @@ require conf/machine/include/omap3.inc
>  MACHINE_GUI_CLASS = "smallscreen"
>  MACHINE_FEATURES += "touchscreen ethernet"
>  
> -IMAGE_FSTYPES += "ubi tar.gz"
> +IMAGE_FSTYPES += "ubi tar.xz"
>  EXTRA_IMAGECMD_jffs2 = "-lnp -e 0x20000 -s 2048"
>  
>  KERNEL_DEVICETREE = "omap3-evm-37xx.dtb"
> diff --git a/conf/machine/beagleboard.conf b/conf/machine/beagleboard.conf
> index 37d23aa7..ee51fd66 100644
> --- a/conf/machine/beagleboard.conf
> +++ b/conf/machine/beagleboard.conf
> @@ -7,7 +7,7 @@ require conf/machine/include/omap3.inc
>  # Only has DVI connector for external screen
>  MACHINE_GUI_CLASS = "bigscreen"
>  
> -IMAGE_FSTYPES += "tar.gz ubi"
> +IMAGE_FSTYPES += "tar.xz ubi"
>  EXTRA_IMAGECMD_jffs2 = "-lnp"
>  
>  KERNEL_DEVICETREE = "omap3-beagle.dtb omap3-beagle-xm.dtb omap3-beagle-xm-ab.dtb"
> diff --git a/conf/machine/omap3evm.conf b/conf/machine/omap3evm.conf
> index a7457c04..01808b68 100644
> --- a/conf/machine/omap3evm.conf
> +++ b/conf/machine/omap3evm.conf
> @@ -7,7 +7,7 @@ require conf/machine/include/omap3.inc
>  MACHINE_GUI_CLASS = "smallscreen"
>  MACHINE_FEATURES += "touchscreen ethernet"
>  
> -IMAGE_FSTYPES += "jffs2 tar.gz"
> +IMAGE_FSTYPES += "jffs2 tar.xz"
>  EXTRA_IMAGECMD_jffs2 = "-lnp -e 0x20000 -s 2048"
>  
>  SERIAL_CONSOLES = "115200;ttyS0"
> diff --git a/conf/machine/omap5-evm.conf b/conf/machine/omap5-evm.conf
> index 28044cb9..b4cec1a2 100644
> --- a/conf/machine/omap5-evm.conf
> +++ b/conf/machine/omap5-evm.conf
> @@ -4,7 +4,7 @@
>  
>  require conf/machine/include/omap-a15.inc
>  
> -IMAGE_FSTYPES += "ubi tar.gz"
> +IMAGE_FSTYPES += "ubi tar.xz"
>  
>  KERNEL_DEVICETREE = "omap5-uevm.dtb"
>  
> diff --git a/conf/machine/pandaboard.conf b/conf/machine/pandaboard.conf
> index edfc612b..4dd6fa29 100644
> --- a/conf/machine/pandaboard.conf
> +++ b/conf/machine/pandaboard.conf
> @@ -6,7 +6,7 @@ require conf/machine/include/omap4.inc
>  
>  MACHINE_GUI_CLASS = "bigscreen"
>  
> -IMAGE_FSTYPES += "tar.gz"
> +IMAGE_FSTYPES += "tar.xz"
>  
>  KERNEL_DEVICETREE = "omap4-panda.dtb omap4-panda-a4.dtb omap4-panda-es.dtb"
>  
> -- 
> 2.17.1
> 

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

end of thread, other threads:[~2020-01-31 19:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-31 19:34 [meta-ti][master][PATCH] conf/machine: use xz over gz for images Andrew F. Davis
2020-01-31 19:35 ` Denys Dmytriyenko

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.