All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error
@ 2013-12-04 10:33 jackie.huang
  2013-12-04 10:33 ` [meta-networking][PATCH 2/2] inetutils: add --with-libreadline-prefix to avoid host contamination jackie.huang
  2013-12-04 10:39 ` [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error Koen Kooi
  0 siblings, 2 replies; 6+ messages in thread
From: jackie.huang @ 2013-12-04 10:33 UTC (permalink / raw)
  To: openembedded-devel; +Cc: li.wang

From: Jackie Huang <jackie.huang@windriver.com>

Correct the usage of alternative link and target:
ALTERNATIVE_LINK_NAME[name] = "target"
ALTERNATIVE_TARGET[name] = "target"

Signed-off-by: Li Wang <li.wang@windriver.com>
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 .../inetutils/inetutils_1.9.1.bb                     | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/meta-networking/recipes-connectivity/inetutils/inetutils_1.9.1.bb b/meta-networking/recipes-connectivity/inetutils/inetutils_1.9.1.bb
index e371ae5..59a22aa 100644
--- a/meta-networking/recipes-connectivity/inetutils/inetutils_1.9.1.bb
+++ b/meta-networking/recipes-connectivity/inetutils/inetutils_1.9.1.bb
@@ -92,22 +92,22 @@ ALTERNATIVE_${PN}-ftp = "ftp"
 ALTERNATIVE_${PN}-ftpd = "ftpd"
 ALTERNATIVE_${PN}-tftp = "tftp"
 ALTERNATIVE_${PN}-tftpd = "tftpd"
-ALTERNATIVE_LINK_NAME_${PN}-tftpd = "${bindir}/tftpd"
-ALTERNATIVE_TARGET_${PN}-tftpd  = "${sbindir}/in.tftpd"
+ALTERNATIVE_LINK_NAME[tftpd] = "${bindir}/tftpd"
+ALTERNATIVE_TARGET[tftpd]  = "${sbindir}/in.tftpd"
 
 ALTERNATIVE_${PN}-telnet = "telnet"
 ALTERNATIVE_${PN}-telnetd = "telnetd"
-ALTERNATIVE_LINK_NAME_${PN}-telnetd = "${bindir}/telnetd"
-ALTERNATIVE_TARGET_${PN}-telnetd = "${sbindir}/in.telnetd"
+ALTERNATIVE_LINK_NAME[telnetd] = "${bindir}/telnetd"
+ALTERNATIVE_TARGET[telnetd] = "${sbindir}/in.telnetd"
 
 ALTERNATIVE_${PN}-rsh = "rcp rexec rlogin rsh"
 ALTERNATIVE_${PN}-rshd = "rshd rexecd rlogind"
-ALTERNATIVE_LINK_NAME_${PN}-rshd = "${bindir}/rshd"
-ALTERNATIVE_TARGET_${PN}-rshd = "${sbindir}/in.rshd"
-ALTERNATIVE_LINK_NAME_${PN}-rexecd = "${bindir}/rexecd"
-ALTERNATIVE_TARGET_${PN}-rexecd = "${sbindir}/in.rexecd"
-ALTERNATIVE_LINK_NAME_${PN}-rlogind = "${bindir}/rlogind"
-ALTERNATIVE_TARGET_${PN}-rlogind = "${sbindir}/in.rlogind"
+ALTERNATIVE_LINK_NAME[rshd] = "${bindir}/rshd"
+ALTERNATIVE_TARGET[rshd] = "${sbindir}/in.rshd"
+ALTERNATIVE_LINK_NAME[rexecd] = "${bindir}/rexecd"
+ALTERNATIVE_TARGET[rexecd] = "${sbindir}/in.rexecd"
+ALTERNATIVE_LINK_NAME[rlogind] = "${bindir}/rlogind"
+ALTERNATIVE_TARGET[rlogind] = "${sbindir}/in.rlogind"
 
 ALTERNATIVE_${PN}-inetd= "inetd"
 ALTERNATIVE_${PN}-traceroute = "traceroute"
-- 
1.8.3



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

* [meta-networking][PATCH 2/2] inetutils: add --with-libreadline-prefix to avoid host contamination
  2013-12-04 10:33 [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error jackie.huang
@ 2013-12-04 10:33 ` jackie.huang
  2013-12-04 10:39 ` [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error Koen Kooi
  1 sibling, 0 replies; 6+ messages in thread
From: jackie.huang @ 2013-12-04 10:33 UTC (permalink / raw)
  To: openembedded-devel; +Cc: li.wang

From: Jackie Huang <jackie.huang@windriver.com>

Fix the do_rootfs error:
| Computing transaction...error: Can't install inetutils-telnetd-1.9.1-r1.1@i686: no package provides libreadline.so.5

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-networking/recipes-connectivity/inetutils/inetutils_1.9.1.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-networking/recipes-connectivity/inetutils/inetutils_1.9.1.bb b/meta-networking/recipes-connectivity/inetutils/inetutils_1.9.1.bb
index 59a22aa..edff60a 100644
--- a/meta-networking/recipes-connectivity/inetutils/inetutils_1.9.1.bb
+++ b/meta-networking/recipes-connectivity/inetutils/inetutils_1.9.1.bb
@@ -38,6 +38,7 @@ EXTRA_OECONF = "--with-ncurses-include-dir=${STAGING_INCDIR} \
         --with-path-procnet-dev=/proc/net/dev \
         ${noipv6} \
         --with-path-login=/bin/login \
+        --with-libreadline-prefix=${STAGING_DIR_HOST}${prefix} \
 "
 
 do_configure_prepend () {
-- 
1.8.3



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

* Re: [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error
  2013-12-04 10:33 [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error jackie.huang
  2013-12-04 10:33 ` [meta-networking][PATCH 2/2] inetutils: add --with-libreadline-prefix to avoid host contamination jackie.huang
@ 2013-12-04 10:39 ` Koen Kooi
  2013-12-04 13:49   ` Joe MacDonald
  1 sibling, 1 reply; 6+ messages in thread
From: Koen Kooi @ 2013-12-04 10:39 UTC (permalink / raw)
  To: openembedded-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

jackie.huang@windriver.com schreef op 04-12-13 11:33:
> From: Jackie Huang <jackie.huang@windriver.com>
> 
> Correct the usage of alternative link and target:

Make the above the summary, 'fix simple bb rule error' is too vague when
looking through the output of 'git log --oneline'
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
Comment: GPGTools - http://gpgtools.org

iD8DBQFSnwZqMkyGM64RGpERAvn8AJwJgmIczTwCWNuTe6TdkiGUyl+kKgCdHrcA
ub+FZU7aXb7K84C447kCCqk=
=6wkg
-----END PGP SIGNATURE-----



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

* Re: [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error
  2013-12-04 10:39 ` [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error Koen Kooi
@ 2013-12-04 13:49   ` Joe MacDonald
  2013-12-04 21:10     ` Joe MacDonald
  2013-12-05  2:06     ` jhuang0
  0 siblings, 2 replies; 6+ messages in thread
From: Joe MacDonald @ 2013-12-04 13:49 UTC (permalink / raw)
  To: jackie.huang, koen; +Cc: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1157 bytes --]

[Re: [oe] [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error] On 13.12.04 (Wed 11:39) Koen Kooi wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> jackie.huang@windriver.com schreef op 04-12-13 11:33:
> > From: Jackie Huang <jackie.huang@windriver.com>
> > 
> > Correct the usage of alternative link and target:
> 
> Make the above the summary, 'fix simple bb rule error' is too vague when
> looking through the output of 'git log --oneline'

Agreed.  If there's no objection, I'll change this to:

inetutils: use new update-alternatives syntax

Though that does tend to render the rest of the commit log redundant.
:-)

-J.

> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.5 (Darwin)
> Comment: GPGTools - http://gpgtools.org
> 
> iD8DBQFSnwZqMkyGM64RGpERAvn8AJwJgmIczTwCWNuTe6TdkiGUyl+kKgCdHrcA
> ub+FZU7aXb7K84C447kCCqk=
> =6wkg
> -----END PGP SIGNATURE-----
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
-Joe MacDonald.
:wq

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error
  2013-12-04 13:49   ` Joe MacDonald
@ 2013-12-04 21:10     ` Joe MacDonald
  2013-12-05  2:06     ` jhuang0
  1 sibling, 0 replies; 6+ messages in thread
From: Joe MacDonald @ 2013-12-04 21:10 UTC (permalink / raw)
  To: jackie.huang, koen; +Cc: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1535 bytes --]

[Re: [oe] [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error] On 13.12.04 (Wed 08:49) Joe MacDonald wrote:

> [Re: [oe] [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error] On 13.12.04 (Wed 11:39) Koen Kooi wrote:
> 
> > -----BEGIN PGP SIGNED MESSAGE-----
> > Hash: SHA1
> > 
> > jackie.huang@windriver.com schreef op 04-12-13 11:33:
> > > From: Jackie Huang <jackie.huang@windriver.com>
> > > 
> > > Correct the usage of alternative link and target:
> > 
> > Make the above the summary, 'fix simple bb rule error' is too vague when
> > looking through the output of 'git log --oneline'
> 
> Agreed.  If there's no objection, I'll change this to:
> 
> inetutils: use new update-alternatives syntax
> 
> Though that does tend to render the rest of the commit log redundant.
> :-)

Okay, I went ahead and merged what I suggested I would.  I'm seeing QA
issues with bad RPATH values, but those don't appear to be new, so I'll
look at them separately.

-J.

> 
> -J.
> 
> > -----BEGIN PGP SIGNATURE-----
> > Version: GnuPG v1.4.5 (Darwin)
> > Comment: GPGTools - http://gpgtools.org
> > 
> > iD8DBQFSnwZqMkyGM64RGpERAvn8AJwJgmIczTwCWNuTe6TdkiGUyl+kKgCdHrcA
> > ub+FZU7aXb7K84C447kCCqk=
> > =6wkg
> > -----END PGP SIGNATURE-----
> > 
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> 
-- 
-Joe MacDonald.
:wq

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error
  2013-12-04 13:49   ` Joe MacDonald
  2013-12-04 21:10     ` Joe MacDonald
@ 2013-12-05  2:06     ` jhuang0
  1 sibling, 0 replies; 6+ messages in thread
From: jhuang0 @ 2013-12-05  2:06 UTC (permalink / raw)
  To: Joe MacDonald, koen; +Cc: openembedded-devel



On 12/4/2013 9:49 PM, Joe MacDonald wrote:
> [Re: [oe] [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error] On 13.12.04 (Wed 11:39) Koen Kooi wrote:
>
>> -----BEGIN PGP SIGNED MESSAGE-----
>> Hash: SHA1
>>
>> jackie.huang@windriver.com schreef op 04-12-13 11:33:
>>> From: Jackie Huang <jackie.huang@windriver.com>
>>>
>>> Correct the usage of alternative link and target:
>>
>> Make the above the summary, 'fix simple bb rule error' is too vague when
>> looking through the output of 'git log --oneline'
>
> Agreed.  If there's no objection, I'll change this to:

No objection, thanks!

Thanks,
Jackie

>
> inetutils: use new update-alternatives syntax
>
> Though that does tend to render the rest of the commit log redundant.
> :-)
>
> -J.
>
>> -----BEGIN PGP SIGNATURE-----
>> Version: GnuPG v1.4.5 (Darwin)
>> Comment: GPGTools - http://gpgtools.org
>>
>> iD8DBQFSnwZqMkyGM64RGpERAvn8AJwJgmIczTwCWNuTe6TdkiGUyl+kKgCdHrcA
>> ub+FZU7aXb7K84C447kCCqk=
>> =6wkg
>> -----END PGP SIGNATURE-----
>>
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>

-- 
Jackie Huang
WIND RIVER | China Development Center
MSN:jackielily@hotmail.com
Tel: +86 8477 8594
Mobile: +86 138 1027 4745


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

end of thread, other threads:[~2013-12-05  2:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-04 10:33 [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error jackie.huang
2013-12-04 10:33 ` [meta-networking][PATCH 2/2] inetutils: add --with-libreadline-prefix to avoid host contamination jackie.huang
2013-12-04 10:39 ` [meta-networking][PATCH 1/2] inetutils: fix simple bb rule error Koen Kooi
2013-12-04 13:49   ` Joe MacDonald
2013-12-04 21:10     ` Joe MacDonald
2013-12-05  2:06     ` jhuang0

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.