Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/kodi: fix path to binary
@ 2017-04-22 21:05 Yann E. MORIN
  2017-04-22 21:11 ` Yann E. MORIN
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Yann E. MORIN @ 2017-04-22 21:05 UTC (permalink / raw)
  To: buildroot

Since XBMC was renamed to Kodi, upstream is progressively propagating
the rename to directories and files, and in some cases kept a legacy
symlink xbmc->kodi, like /usr/lib/xbmc pointing to /usr/lib/kodi.

In 62165ae (package/kodi: Fix path to binary in service), the path nary
was changed to use the new canonical path, but the init script was eft
out. This was not seen previously, becasue of the legacy symlink.

But with the adevent of Kodi 17 (Krypton), that legacy symlink is no
more, and the init script no longer works.

Do for the init script what was done two years ago for the service file.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
Cc: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/kodi/S50kodi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/kodi/S50kodi b/package/kodi/S50kodi
index f00c59c5d9..0afe7a6706 100755
--- a/package/kodi/S50kodi
+++ b/package/kodi/S50kodi
@@ -4,7 +4,7 @@
 #
 
 BIN=/usr/bin/br-kodi
-KODI=/usr/lib/xbmc/kodi.bin
+KODI=/usr/lib/kodi/kodi.bin
 KODI_ARGS="--standalone -fs -n"
 PIDFILE=/var/run/kodi.pid
 
-- 
2.11.0

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

* [Buildroot] [PATCH] package/kodi: fix path to binary
  2017-04-22 21:05 [Buildroot] [PATCH] package/kodi: fix path to binary Yann E. MORIN
@ 2017-04-22 21:11 ` Yann E. MORIN
  2017-04-22 21:14 ` Bernd Kuhls
  2017-04-22 21:22 ` Marcus Hoffmann
  2 siblings, 0 replies; 5+ messages in thread
From: Yann E. MORIN @ 2017-04-22 21:11 UTC (permalink / raw)
  To: buildroot

All,

On 2017-04-22 23:05 +0200, Yann E. MORIN spake thusly:
> Since XBMC was renamed to Kodi, upstream is progressively propagating
> the rename to directories and files, and in some cases kept a legacy
> symlink xbmc->kodi, like /usr/lib/xbmc pointing to /usr/lib/kodi.
> 
> In 62165ae (package/kodi: Fix path to binary in service), the path nary

s/ nary$//

Not sure  what hapenned...

Regards,
Yann E. MORIN.

> was changed to use the new canonical path, but the init script was eft
> out. This was not seen previously, becasue of the legacy symlink.
> 
> But with the adevent of Kodi 17 (Krypton), that legacy symlink is no
> more, and the init script no longer works.
> 
> Do for the init script what was done two years ago for the service file.
> 
> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com>
> Cc: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/kodi/S50kodi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/kodi/S50kodi b/package/kodi/S50kodi
> index f00c59c5d9..0afe7a6706 100755
> --- a/package/kodi/S50kodi
> +++ b/package/kodi/S50kodi
> @@ -4,7 +4,7 @@
>  #
>  
>  BIN=/usr/bin/br-kodi
> -KODI=/usr/lib/xbmc/kodi.bin
> +KODI=/usr/lib/kodi/kodi.bin
>  KODI_ARGS="--standalone -fs -n"
>  PIDFILE=/var/run/kodi.pid
>  
> -- 
> 2.11.0
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

* [Buildroot] [PATCH] package/kodi: fix path to binary
  2017-04-22 21:05 [Buildroot] [PATCH] package/kodi: fix path to binary Yann E. MORIN
  2017-04-22 21:11 ` Yann E. MORIN
@ 2017-04-22 21:14 ` Bernd Kuhls
  2017-04-22 21:22 ` Marcus Hoffmann
  2 siblings, 0 replies; 5+ messages in thread
From: Bernd Kuhls @ 2017-04-22 21:14 UTC (permalink / raw)
  To: buildroot

Am Sat, 22 Apr 2017 23:05:39 +0200 schrieb Yann E. MORIN:

> Since XBMC was renamed to Kodi, upstream is progressively propagating
> the rename to directories and files, and in some cases kept a legacy
> symlink xbmc->kodi, like /usr/lib/xbmc pointing to /usr/lib/kodi.
> 
> In 62165ae (package/kodi: Fix path to binary in service), the path nary
> was changed to use the new canonical path, but the init script was eft
> out. This was not seen previously, becasue of the legacy symlink.
> 
> But with the adevent of Kodi 17 (Krypton), that legacy symlink is no
> more, and the init script no longer works.
> 
> Do for the init script what was done two years ago for the service file.
> 
> Signed-off-by: "Yann E. MORIN"
> <yann.morin.1998@free.fr> Cc: Maxime Hadjinlian
> <maxime.hadjinlian@gmail.com>
> Cc: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/kodi/S50kodi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/kodi/S50kodi b/package/kodi/S50kodi index
> f00c59c5d9..0afe7a6706 100755 --- a/package/kodi/S50kodi +++
> b/package/kodi/S50kodi @@ -4,7 +4,7 @@
>  #
>  
>  BIN=/usr/bin/br-kodi
> -KODI=/usr/lib/xbmc/kodi.bin +KODI=/usr/lib/kodi/kodi.bin
>  KODI_ARGS="--standalone -fs -n" PIDFILE=/var/run/kodi.pid

Reviewed-by: Bernd Kuhls <bernd.kuhls@t-online.de>

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

* [Buildroot] [PATCH] package/kodi: fix path to binary
  2017-04-22 21:05 [Buildroot] [PATCH] package/kodi: fix path to binary Yann E. MORIN
  2017-04-22 21:11 ` Yann E. MORIN
  2017-04-22 21:14 ` Bernd Kuhls
@ 2017-04-22 21:22 ` Marcus Hoffmann
  2017-04-23  6:26   ` Yann E. MORIN
  2 siblings, 1 reply; 5+ messages in thread
From: Marcus Hoffmann @ 2017-04-22 21:22 UTC (permalink / raw)
  To: buildroot

Hey Yann,

On 22.04.2017 23:05, Yann E. MORIN wrote:
> Since XBMC was renamed to Kodi, upstream is progressively propagating
> the rename to directories and files, and in some cases kept a legacy
> symlink xbmc->kodi, like /usr/lib/xbmc pointing to /usr/lib/kodi.
> 
> In 62165ae (package/kodi: Fix path to binary in service), the path nary
> was changed to use the new canonical path, but the init script was eft

Another typo here 'eft'.

> out. This was not seen previously, becasue of the legacy symlink.
> 
> But with the adevent of Kodi 17 (Krypton), that legacy symlink is no

And here 'adevent'.

> [...]


Best wishes,
Marcus

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

* [Buildroot] [PATCH] package/kodi: fix path to binary
  2017-04-22 21:22 ` Marcus Hoffmann
@ 2017-04-23  6:26   ` Yann E. MORIN
  0 siblings, 0 replies; 5+ messages in thread
From: Yann E. MORIN @ 2017-04-23  6:26 UTC (permalink / raw)
  To: buildroot

Marcus, All,

On 2017-04-22 23:22 +0200, Marcus Hoffmann spake thusly:
> On 22.04.2017 23:05, Yann E. MORIN wrote:
> > Since XBMC was renamed to Kodi, upstream is progressively propagating
> > the rename to directories and files, and in some cases kept a legacy
> > symlink xbmc->kodi, like /usr/lib/xbmc pointing to /usr/lib/kodi.
> > 
> > In 62165ae (package/kodi: Fix path to binary in service), the path nary
> > was changed to use the new canonical path, but the init script was eft
> 
> Another typo here 'eft'.
> 
> > out. This was not seen previously, becasue of the legacy symlink.
> > 
> > But with the adevent of Kodi 17 (Krypton), that legacy symlink is no
> 
> And here 'adevent'.

Thanks, I'll respin.

Regards,
Yann E. MORIN.

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

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

end of thread, other threads:[~2017-04-23  6:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-22 21:05 [Buildroot] [PATCH] package/kodi: fix path to binary Yann E. MORIN
2017-04-22 21:11 ` Yann E. MORIN
2017-04-22 21:14 ` Bernd Kuhls
2017-04-22 21:22 ` Marcus Hoffmann
2017-04-23  6:26   ` Yann E. MORIN

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