mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
* [ptxdist] [PATCH] weston: version bump 7.0.0 -> 8.0.0
@ 2020-01-27  8:26 Philipp Zabel
  2020-01-31  7:11 ` Michael Olbrich
  0 siblings, 1 reply; 3+ messages in thread
From: Philipp Zabel @ 2020-01-27  8:26 UTC (permalink / raw)
  To: ptxdist

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
---
 rules/weston.in   | 12 ------------
 rules/weston.make | 14 ++++----------
 2 files changed, 4 insertions(+), 22 deletions(-)

diff --git a/rules/weston.in b/rules/weston.in
index fe44f10813d7..a2b3775eec67 100644
--- a/rules/weston.in
+++ b/rules/weston.in
@@ -130,18 +130,6 @@ config WESTON_SIMPLE_CLIENTS
 	help
 	  Install the weston-simple-* test clients.
 
-config WESTON_SIMPLE_DMABUF_DRM_INTEL
-        bool
-        default LIBDRM_INTEL
-
-config WESTON_SIMPLE_DMABUF_DRM_FREEDRENO
-        bool
-        default LIBDRM_FREEDRENO
-
-config WESTON_SIMPLE_DMABUF_DRM_ETNAVIV
-        bool
-        default LIBDRM_ETNAVIV
-
 config WESTON_TOUCH_CALIBRATOR
 	bool
 	prompt "touch calibrator"
diff --git a/rules/weston.make b/rules/weston.make
index eaabebe6186e..824c1f89da01 100644
--- a/rules/weston.make
+++ b/rules/weston.make
@@ -15,9 +15,9 @@ PACKAGES-$(PTXCONF_WESTON) += weston
 #
 # Paths and names
 #
-WESTON_VERSION	:= 7.0.0
-LIBWESTON_MAJOR := 7
-WESTON_MD5	:= cbfda483bc2501d0831af3f33c707850
+WESTON_VERSION	:= 8.0.0
+LIBWESTON_MAJOR := 8
+WESTON_MD5	:= 53e4810d852df0601d01fd986a5b22b3
 WESTON		:= weston-$(WESTON_VERSION)
 WESTON_SUFFIX	:= tar.xz
 WESTON_URL	:= http://wayland.freedesktop.org/releases/$(WESTON).$(WESTON_SUFFIX)
@@ -29,12 +29,6 @@ WESTON_LICENSE	:= MIT
 # Prepare
 # ----------------------------------------------------------------------------
 
-ifdef PTXCONF_ARCH_X86
-WESTON_SIMPLE_DMABUF_DRM-$(PTXCONF_WESTON_SIMPLE_DMABUF_DRM_INTEL) += intel
-endif
-WESTON_SIMPLE_DMABUF_DRM-$(PTXCONF_WESTON_SIMPLE_DMABUF_DRM_FREEDRENO) += freedreno
-WESTON_SIMPLE_DMABUF_DRM-$(PTXCONF_WESTON_SIMPLE_DMABUF_DRM_ETNAVIV) += etnaviv
-
 WESTON_SIMPLE_CLIENTS-y := damage im shm touch
 WESTON_SIMPLE_CLIENTS-$(PTXCONF_WESTON_GL) += egl dmabuf-egl
 
@@ -66,7 +60,6 @@ WESTON_CONF_OPT		:= \
 	-Dshell-fullscreen=true \
 	-Dshell-ivi=$(call ptx/truefalse,PTXCONF_WESTON_IVISHELL) \
 	-Dsimple-clients=$(subst $(space),$(comma),$(WESTON_SIMPLE_CLIENTS-y)) \
-	-Dsimple-dmabuf-drm=$(subst $(space),$(comma),$(WESTON_SIMPLE_DMABUF_DRM-y)) \
 	-Dsystemd=$(call ptx/truefalse,PTXCONF_WESTON_SYSTEMD) \
 	-Dtest-junit-xml=false \
 	-Dtools=calibrator,debug,info,terminal,touch-calibrator \
@@ -170,6 +163,7 @@ endif
 ifdef PTXCONF_WESTON_SYSTEMD
 	@$(call install_lib, weston, 0, 0, 0644, weston/systemd-notify)
 endif
+	@$(call install_lib, weston, 0, 0, 0644, weston/libexec_weston)
 
 ifdef PTXCONF_INITMETHOD_BBINIT
 ifdef PTXCONF_WESTON_STARTSCRIPT
-- 
2.20.1


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] [PATCH] weston: version bump 7.0.0 -> 8.0.0
  2020-01-27  8:26 [ptxdist] [PATCH] weston: version bump 7.0.0 -> 8.0.0 Philipp Zabel
@ 2020-01-31  7:11 ` Michael Olbrich
  2020-02-01 18:05   ` Michael Olbrich
  0 siblings, 1 reply; 3+ messages in thread
From: Michael Olbrich @ 2020-01-31  7:11 UTC (permalink / raw)
  To: ptxdist

On Mon, Jan 27, 2020 at 09:26:40AM +0100, Philipp Zabel wrote:
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> ---
>  rules/weston.in   | 12 ------------
>  rules/weston.make | 14 ++++----------
>  2 files changed, 4 insertions(+), 22 deletions(-)
> 
> diff --git a/rules/weston.in b/rules/weston.in
> index fe44f10813d7..a2b3775eec67 100644
> --- a/rules/weston.in
> +++ b/rules/weston.in
> @@ -130,18 +130,6 @@ config WESTON_SIMPLE_CLIENTS
>  	help
>  	  Install the weston-simple-* test clients.
>  
> -config WESTON_SIMPLE_DMABUF_DRM_INTEL
> -        bool
> -        default LIBDRM_INTEL
> -
> -config WESTON_SIMPLE_DMABUF_DRM_FREEDRENO
> -        bool
> -        default LIBDRM_FREEDRENO
> -
> -config WESTON_SIMPLE_DMABUF_DRM_ETNAVIV
> -        bool
> -        default LIBDRM_ETNAVIV
> -
>  config WESTON_TOUCH_CALIBRATOR
>  	bool
>  	prompt "touch calibrator"
> diff --git a/rules/weston.make b/rules/weston.make
> index eaabebe6186e..824c1f89da01 100644
> --- a/rules/weston.make
> +++ b/rules/weston.make
> @@ -15,9 +15,9 @@ PACKAGES-$(PTXCONF_WESTON) += weston
>  #
>  # Paths and names
>  #
> -WESTON_VERSION	:= 7.0.0
> -LIBWESTON_MAJOR := 7
> -WESTON_MD5	:= cbfda483bc2501d0831af3f33c707850
> +WESTON_VERSION	:= 8.0.0
> +LIBWESTON_MAJOR := 8
> +WESTON_MD5	:= 53e4810d852df0601d01fd986a5b22b3
>  WESTON		:= weston-$(WESTON_VERSION)
>  WESTON_SUFFIX	:= tar.xz
>  WESTON_URL	:= http://wayland.freedesktop.org/releases/$(WESTON).$(WESTON_SUFFIX)
> @@ -29,12 +29,6 @@ WESTON_LICENSE	:= MIT
>  # Prepare
>  # ----------------------------------------------------------------------------
>  
> -ifdef PTXCONF_ARCH_X86
> -WESTON_SIMPLE_DMABUF_DRM-$(PTXCONF_WESTON_SIMPLE_DMABUF_DRM_INTEL) += intel
> -endif
> -WESTON_SIMPLE_DMABUF_DRM-$(PTXCONF_WESTON_SIMPLE_DMABUF_DRM_FREEDRENO) += freedreno
> -WESTON_SIMPLE_DMABUF_DRM-$(PTXCONF_WESTON_SIMPLE_DMABUF_DRM_ETNAVIV) += etnaviv
> -

/usr/bin/weston-simple-dmabuf-drm is no longer there. It must be removed
from targetinstall.

And libexec_weston.so.0 is not installed but needed.

Michael

>  WESTON_SIMPLE_CLIENTS-y := damage im shm touch
>  WESTON_SIMPLE_CLIENTS-$(PTXCONF_WESTON_GL) += egl dmabuf-egl
>  
> @@ -66,7 +60,6 @@ WESTON_CONF_OPT		:= \
>  	-Dshell-fullscreen=true \
>  	-Dshell-ivi=$(call ptx/truefalse,PTXCONF_WESTON_IVISHELL) \
>  	-Dsimple-clients=$(subst $(space),$(comma),$(WESTON_SIMPLE_CLIENTS-y)) \
> -	-Dsimple-dmabuf-drm=$(subst $(space),$(comma),$(WESTON_SIMPLE_DMABUF_DRM-y)) \
>  	-Dsystemd=$(call ptx/truefalse,PTXCONF_WESTON_SYSTEMD) \
>  	-Dtest-junit-xml=false \
>  	-Dtools=calibrator,debug,info,terminal,touch-calibrator \
> @@ -170,6 +163,7 @@ endif
>  ifdef PTXCONF_WESTON_SYSTEMD
>  	@$(call install_lib, weston, 0, 0, 0644, weston/systemd-notify)
>  endif
> +	@$(call install_lib, weston, 0, 0, 0644, weston/libexec_weston)
>  
>  ifdef PTXCONF_INITMETHOD_BBINIT
>  ifdef PTXCONF_WESTON_STARTSCRIPT
> -- 
> 2.20.1
> 
> 
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

* Re: [ptxdist] [PATCH] weston: version bump 7.0.0 -> 8.0.0
  2020-01-31  7:11 ` Michael Olbrich
@ 2020-02-01 18:05   ` Michael Olbrich
  0 siblings, 0 replies; 3+ messages in thread
From: Michael Olbrich @ 2020-02-01 18:05 UTC (permalink / raw)
  To: ptxdist

On Fri, Jan 31, 2020 at 08:11:34AM +0100, Michael Olbrich wrote:
> On Mon, Jan 27, 2020 at 09:26:40AM +0100, Philipp Zabel wrote:
> > Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> > ---
> >  rules/weston.in   | 12 ------------
> >  rules/weston.make | 14 ++++----------
> >  2 files changed, 4 insertions(+), 22 deletions(-)
> > 
> > diff --git a/rules/weston.in b/rules/weston.in
> > index fe44f10813d7..a2b3775eec67 100644
> > --- a/rules/weston.in
> > +++ b/rules/weston.in
> > @@ -130,18 +130,6 @@ config WESTON_SIMPLE_CLIENTS
> >  	help
> >  	  Install the weston-simple-* test clients.
> >  
> > -config WESTON_SIMPLE_DMABUF_DRM_INTEL
> > -        bool
> > -        default LIBDRM_INTEL
> > -
> > -config WESTON_SIMPLE_DMABUF_DRM_FREEDRENO
> > -        bool
> > -        default LIBDRM_FREEDRENO
> > -
> > -config WESTON_SIMPLE_DMABUF_DRM_ETNAVIV
> > -        bool
> > -        default LIBDRM_ETNAVIV
> > -
> >  config WESTON_TOUCH_CALIBRATOR
> >  	bool
> >  	prompt "touch calibrator"
> > diff --git a/rules/weston.make b/rules/weston.make
> > index eaabebe6186e..824c1f89da01 100644
> > --- a/rules/weston.make
> > +++ b/rules/weston.make
> > @@ -15,9 +15,9 @@ PACKAGES-$(PTXCONF_WESTON) += weston
> >  #
> >  # Paths and names
> >  #
> > -WESTON_VERSION	:= 7.0.0
> > -LIBWESTON_MAJOR := 7
> > -WESTON_MD5	:= cbfda483bc2501d0831af3f33c707850
> > +WESTON_VERSION	:= 8.0.0
> > +LIBWESTON_MAJOR := 8
> > +WESTON_MD5	:= 53e4810d852df0601d01fd986a5b22b3
> >  WESTON		:= weston-$(WESTON_VERSION)
> >  WESTON_SUFFIX	:= tar.xz
> >  WESTON_URL	:= http://wayland.freedesktop.org/releases/$(WESTON).$(WESTON_SUFFIX)
> > @@ -29,12 +29,6 @@ WESTON_LICENSE	:= MIT
> >  # Prepare
> >  # ----------------------------------------------------------------------------
> >  
> > -ifdef PTXCONF_ARCH_X86
> > -WESTON_SIMPLE_DMABUF_DRM-$(PTXCONF_WESTON_SIMPLE_DMABUF_DRM_INTEL) += intel
> > -endif
> > -WESTON_SIMPLE_DMABUF_DRM-$(PTXCONF_WESTON_SIMPLE_DMABUF_DRM_FREEDRENO) += freedreno
> > -WESTON_SIMPLE_DMABUF_DRM-$(PTXCONF_WESTON_SIMPLE_DMABUF_DRM_ETNAVIV) += etnaviv
> > -
> 
> /usr/bin/weston-simple-dmabuf-drm is no longer there. It must be removed
> from targetinstall.
> 
> And libexec_weston.so.0 is not installed but needed.

Right, it's there but the rpath is missing in the plugins, to it's not
found by the checker script :-/. I'm not sure how I want to handle this...

Michael

> >  WESTON_SIMPLE_CLIENTS-y := damage im shm touch
> >  WESTON_SIMPLE_CLIENTS-$(PTXCONF_WESTON_GL) += egl dmabuf-egl
> >  
> > @@ -66,7 +60,6 @@ WESTON_CONF_OPT		:= \
> >  	-Dshell-fullscreen=true \
> >  	-Dshell-ivi=$(call ptx/truefalse,PTXCONF_WESTON_IVISHELL) \
> >  	-Dsimple-clients=$(subst $(space),$(comma),$(WESTON_SIMPLE_CLIENTS-y)) \
> > -	-Dsimple-dmabuf-drm=$(subst $(space),$(comma),$(WESTON_SIMPLE_DMABUF_DRM-y)) \
> >  	-Dsystemd=$(call ptx/truefalse,PTXCONF_WESTON_SYSTEMD) \
> >  	-Dtest-junit-xml=false \
> >  	-Dtools=calibrator,debug,info,terminal,touch-calibrator \
> > @@ -170,6 +163,7 @@ endif
> >  ifdef PTXCONF_WESTON_SYSTEMD
> >  	@$(call install_lib, weston, 0, 0, 0644, weston/systemd-notify)
> >  endif
> > +	@$(call install_lib, weston, 0, 0, 0644, weston/libexec_weston)
> >  
> >  ifdef PTXCONF_INITMETHOD_BBINIT
> >  ifdef PTXCONF_WESTON_STARTSCRIPT
> > -- 
> > 2.20.1
> > 
> > 
> > _______________________________________________
> > ptxdist mailing list
> > ptxdist@pengutronix.de
> > 
> 
> -- 
> Pengutronix e.K.                           |                             |
> Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
> 31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
> Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |
> 
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

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

end of thread, other threads:[~2020-02-01 18:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-27  8:26 [ptxdist] [PATCH] weston: version bump 7.0.0 -> 8.0.0 Philipp Zabel
2020-01-31  7:11 ` Michael Olbrich
2020-02-01 18:05   ` Michael Olbrich

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox