* telnetd is not running with "core-image-basic"
@ 2013-10-26 5:17 Amit Kumar
2013-10-27 13:29 ` Gary Thomas
0 siblings, 1 reply; 4+ messages in thread
From: Amit Kumar @ 2013-10-26 5:17 UTC (permalink / raw)
To: yocto@yoctoproject.org
Hi,
I tried to run the telnetd with "core-image-basic". I follow up the following step to enable the telnetd support in my layer.
I have build the latest inetutils recipe with my layer, the latest version of inteutils is "intetutils_1.9.1". I have build the packages successful.
But the telnetd is not available in my "core-image-basic". When i run the the image under QEMU, there is no telnetd under "/usr/sbin/" or "/usr/bin".
It's not present at all.
I have also tried to add the "initscript-telnetd" refer from meta-arago. But not succeed.
Please guild me- how can i will get it with my core-image-basic image. Am i missing any step here for that?
Thanks & Regards
Amit K
The contents of this e-mail and any attachment(s) may contain confidential or privileged information for the intended recipient(s). Unintended recipients are prohibited from taking action on the basis of information in this e-mail and using or disseminating the information, and must notify the sender and delete it from their system. L&T Infotech will not accept responsibility or liability for the accuracy or completeness of, or the presence of any virus or disabling code in this e-mail"
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: telnetd is not running with "core-image-basic" 2013-10-26 5:17 telnetd is not running with "core-image-basic" Amit Kumar @ 2013-10-27 13:29 ` Gary Thomas 2013-10-28 3:13 ` Amit Kumar 0 siblings, 1 reply; 4+ messages in thread From: Gary Thomas @ 2013-10-27 13:29 UTC (permalink / raw) To: yocto On 2013-10-25 23:17, Amit Kumar wrote: > Hi, > I tried to run the telnetd with "core-image-basic". I follow up the following step to enable the telnetd support in my layer. > I have build the latest inetutils recipe with my layer, the latest version of inteutils is "intetutils_1.9.1". I have build the packages successful. > But the telnetd is not available in my "core-image-basic". When i run the the image under QEMU, there is no telnetd under "/usr/sbin/" or "/usr/bin". > It's not present at all. > > I have also tried to add the "initscript-telnetd" refer from meta-arago. But not succeed. > > Please guild me- how can i will get it with my core-image-basic image. Am i missing any step here for that? Building the package is not enough by itself. You need to get it added to the image that you are using. This can be done either at build time or at run time. To add the package at build time, simply add this to your local.conf: CORE_IMAGE_EXTRA_INSTALL += "inetutils inetutils-telnetd" -- ------------------------------------------------------------ Gary Thomas | Consulting for the MLB Associates | Embedded world ------------------------------------------------------------ ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: telnetd is not running with "core-image-basic" 2013-10-27 13:29 ` Gary Thomas @ 2013-10-28 3:13 ` Amit Kumar 2013-10-28 10:15 ` Amit Kumar 0 siblings, 1 reply; 4+ messages in thread From: Amit Kumar @ 2013-10-28 3:13 UTC (permalink / raw) To: Gary Thomas, yocto@yoctoproject.org Hi, I have tried with adding the " CORE_IMAGE_EXTRA_INSTALL += "inetutils inetutils-telnetd" in locl.conf file. But it doesn't work. I have doubt here the inetutils is a package not the binary which includes the telnet,telnetd,tftp,tftpd and others. So, here I tried to add the telnetd instead of inetutils, but still it not working, I did not get the binary on target. I want to run the telned and tftpd binary or daemons at bootup time. Which is not happening. Even after boot telnetd and tftpd binary itself not present on target. Please help me on that. Thanks Amit K -----Original Message----- From: yocto-bounces@yoctoproject.org [mailto:yocto-bounces@yoctoproject.org] On Behalf Of Gary Thomas Sent: Sunday, October 27, 2013 10:29 PM To: yocto@yoctoproject.org Subject: Re: [yocto] telnetd is not running with "core-image-basic" On 2013-10-25 23:17, Amit Kumar wrote: > Hi, > I tried to run the telnetd with "core-image-basic". I follow up the following step to enable the telnetd support in my layer. > I have build the latest inetutils recipe with my layer, the latest version of inteutils is "intetutils_1.9.1". I have build the packages successful. > But the telnetd is not available in my "core-image-basic". When i run the the image under QEMU, there is no telnetd under "/usr/sbin/" or "/usr/bin". > It's not present at all. > > I have also tried to add the "initscript-telnetd" refer from meta-arago. But not succeed. > > Please guild me- how can i will get it with my core-image-basic image. Am i missing any step here for that? Building the package is not enough by itself. You need to get it added to the image that you are using. This can be done either at build time or at run time. To add the package at build time, simply add this to your local.conf: CORE_IMAGE_EXTRA_INSTALL += "inetutils inetutils-telnetd" -- ------------------------------------------------------------ Gary Thomas | Consulting for the MLB Associates | Embedded world ------------------------------------------------------------ _______________________________________________ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto The contents of this e-mail and any attachment(s) may contain confidential or privileged information for the intended recipient(s). Unintended recipients are prohibited from taking action on the basis of information in this e-mail and using or disseminating the information, and must notify the sender and delete it from their system. L&T Infotech will not accept responsibility or liability for the accuracy or completeness of, or the presence of any virus or disabling code in this e-mail" ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: telnetd is not running with "core-image-basic" 2013-10-28 3:13 ` Amit Kumar @ 2013-10-28 10:15 ` Amit Kumar 0 siblings, 0 replies; 4+ messages in thread From: Amit Kumar @ 2013-10-28 10:15 UTC (permalink / raw) To: Amit Kumar, Gary Thomas, yocto@yoctoproject.org Hi, I have fixed this issue to write the own recipe for " inetutils-mytelnetd". Because with the inetutils- compile and install the success but telnetd does not be copied into the "/usr/sbin" So using the own recipe I have used the telnetd default installed location which is "/usr/libexec/" It's working well now. Thanks Regards Amit K -----Original Message----- From: yocto-bounces@yoctoproject.org [mailto:yocto-bounces@yoctoproject.org] On Behalf Of Amit Kumar Sent: Monday, October 28, 2013 12:14 PM To: Gary Thomas; yocto@yoctoproject.org Subject: Re: [yocto] telnetd is not running with "core-image-basic" Hi, I have tried with adding the " CORE_IMAGE_EXTRA_INSTALL += "inetutils inetutils-telnetd" in locl.conf file. But it doesn't work. I have doubt here the inetutils is a package not the binary which includes the telnet,telnetd,tftp,tftpd and others. So, here I tried to add the telnetd instead of inetutils, but still it not working, I did not get the binary on target. I want to run the telned and tftpd binary or daemons at bootup time. Which is not happening. Even after boot telnetd and tftpd binary itself not present on target. Please help me on that. Thanks Amit K -----Original Message----- From: yocto-bounces@yoctoproject.org [mailto:yocto-bounces@yoctoproject.org] On Behalf Of Gary Thomas Sent: Sunday, October 27, 2013 10:29 PM To: yocto@yoctoproject.org Subject: Re: [yocto] telnetd is not running with "core-image-basic" On 2013-10-25 23:17, Amit Kumar wrote: > Hi, > I tried to run the telnetd with "core-image-basic". I follow up the following step to enable the telnetd support in my layer. > I have build the latest inetutils recipe with my layer, the latest version of inteutils is "intetutils_1.9.1". I have build the packages successful. > But the telnetd is not available in my "core-image-basic". When i run the the image under QEMU, there is no telnetd under "/usr/sbin/" or "/usr/bin". > It's not present at all. > > I have also tried to add the "initscript-telnetd" refer from meta-arago. But not succeed. > > Please guild me- how can i will get it with my core-image-basic image. Am i missing any step here for that? Building the package is not enough by itself. You need to get it added to the image that you are using. This can be done either at build time or at run time. To add the package at build time, simply add this to your local.conf: CORE_IMAGE_EXTRA_INSTALL += "inetutils inetutils-telnetd" -- ------------------------------------------------------------ Gary Thomas | Consulting for the MLB Associates | Embedded world ------------------------------------------------------------ _______________________________________________ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto The contents of this e-mail and any attachment(s) may contain confidential or privileged information for the intended recipient(s). Unintended recipients are prohibited from taking action on the basis of information in this e-mail and using or disseminating the information, and must notify the sender and delete it from their system. L&T Infotech will not accept responsibility or liability for the accuracy or completeness of, or the presence of any virus or disabling code in this e-mail" _______________________________________________ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-10-28 10:15 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-10-26 5:17 telnetd is not running with "core-image-basic" Amit Kumar 2013-10-27 13:29 ` Gary Thomas 2013-10-28 3:13 ` Amit Kumar 2013-10-28 10:15 ` Amit Kumar
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.