Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/optee-client: rename S30optee
@ 2022-12-04  9:10 Fabrice Fontaine
  2022-12-04 11:45 ` Yann E. MORIN
  2022-12-08  9:55 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2022-12-04  9:10 UTC (permalink / raw)
  To: buildroot; +Cc: Etienne Carriere, Fabrice Fontaine

Commit b1c4c18766e51ee55e8d2e3a7cb12cb2762b12ff forgot to rename
S30optee in optee-client.mk resulting in the following build failure:

/usr/bin/install -m 0755 -D package/optee-client//S30optee /home/autobuild/autobuild/instance-0/output-1/target/etc/init.d/S30optee
/usr/bin/install: cannot stat 'package/optee-client//S30optee': No such file or directory

Fixes:
 - http://autobuild.buildroot.org/results/21fc165933e6d226de277b62d4ce99342cef0ffb

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/optee-client/optee-client.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/optee-client/optee-client.mk b/package/optee-client/optee-client.mk
index 252841ba10..3fbbe9484c 100644
--- a/package/optee-client/optee-client.mk
+++ b/package/optee-client/optee-client.mk
@@ -27,8 +27,8 @@ OPTEE_CLIENT_CONF_OPTS += -DCFG_TEE_SUPP_PLUGINS=OFF
 endif
 
 define OPTEE_CLIENT_INSTALL_INIT_SYSV
-	$(INSTALL) -m 0755 -D $(OPTEE_CLIENT_PKGDIR)/S30optee \
-		$(TARGET_DIR)/etc/init.d/S30optee
+	$(INSTALL) -m 0755 -D $(OPTEE_CLIENT_PKGDIR)/S30tee-supplicant \
+		$(TARGET_DIR)/etc/init.d/S30tee-supplicant
 endef
 
 $(eval $(cmake-package))
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/optee-client: rename S30optee
  2022-12-04  9:10 [Buildroot] [PATCH 1/1] package/optee-client: rename S30optee Fabrice Fontaine
@ 2022-12-04 11:45 ` Yann E. MORIN
  2022-12-08  9:55 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2022-12-04 11:45 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Etienne Carriere, buildroot

Fabrice, All,

On 2022-12-04 10:10 +0100, Fabrice Fontaine spake thusly:
> Commit b1c4c18766e51ee55e8d2e3a7cb12cb2762b12ff forgot to rename
> S30optee in optee-client.mk resulting in the following build failure:

Gah, I forgot to git add package/optee-client/optee-client.mk before I
did amend the commit...

> /usr/bin/install -m 0755 -D package/optee-client//S30optee /home/autobuild/autobuild/instance-0/output-1/target/etc/init.d/S30optee
> /usr/bin/install: cannot stat 'package/optee-client//S30optee': No such file or directory
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/21fc165933e6d226de277b62d4ce99342cef0ffb
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Thanks for fixing my mess. Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  package/optee-client/optee-client.mk | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/optee-client/optee-client.mk b/package/optee-client/optee-client.mk
> index 252841ba10..3fbbe9484c 100644
> --- a/package/optee-client/optee-client.mk
> +++ b/package/optee-client/optee-client.mk
> @@ -27,8 +27,8 @@ OPTEE_CLIENT_CONF_OPTS += -DCFG_TEE_SUPP_PLUGINS=OFF
>  endif
>  
>  define OPTEE_CLIENT_INSTALL_INIT_SYSV
> -	$(INSTALL) -m 0755 -D $(OPTEE_CLIENT_PKGDIR)/S30optee \
> -		$(TARGET_DIR)/etc/init.d/S30optee
> +	$(INSTALL) -m 0755 -D $(OPTEE_CLIENT_PKGDIR)/S30tee-supplicant \
> +		$(TARGET_DIR)/etc/init.d/S30tee-supplicant
>  endef
>  
>  $(eval $(cmake-package))
> -- 
> 2.35.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 561 099 427 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/optee-client: rename S30optee
  2022-12-04  9:10 [Buildroot] [PATCH 1/1] package/optee-client: rename S30optee Fabrice Fontaine
  2022-12-04 11:45 ` Yann E. MORIN
@ 2022-12-08  9:55 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-12-08  9:55 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Etienne Carriere, buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > Commit b1c4c18766e51ee55e8d2e3a7cb12cb2762b12ff forgot to rename
 > S30optee in optee-client.mk resulting in the following build failure:

 > /usr/bin/install -m 0755 -D package/optee-client//S30optee
 > /home/autobuild/autobuild/instance-0/output-1/target/etc/init.d/S30optee
 > /usr/bin/install: cannot stat 'package/optee-client//S30optee': No such file or directory

 > Fixes:
 >  - http://autobuild.buildroot.org/results/21fc165933e6d226de277b62d4ce99342cef0ffb

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2022.08.x and 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-12-08  9:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-04  9:10 [Buildroot] [PATCH 1/1] package/optee-client: rename S30optee Fabrice Fontaine
2022-12-04 11:45 ` Yann E. MORIN
2022-12-08  9:55 ` Peter Korsgaard

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