Re: [yocto] How do I write a yocto/bitbake recipe to replace the default vsftpd.conf file with my own filE?

2017-07-27 Thread Vineeth Chowdary Karumanchi
Hi, On 7/27/2017 1:13 PM, Bacheh Karaji wrote: Ok, thanks very much ... On Tuesday, July 25, 2017, 11:18:13 PM GMT+4:30, Ayoub Zaki wrote: On 24.07.2017 07:18, Mohammad Nouri wrote: Hi, I want to replace the default vsftpd.conf file with my own file! My bitbake

Re: [yocto] How do I write a yocto/bitbake recipe to replace the default vsftpd.conf file with my own filE?

2017-07-25 Thread Ayoub Zaki
On 24.07.2017 07:18, Mohammad Nouri wrote: Hi, I want to replace the default vsftpd.conf file with my own file! My bitbake file looks following: bbexample_1.0.bb DESCRIPTION = "Configuration and extra files for TX28" LICENSE = "CLOSED" LIC_FILES_CHKSUM = "" S =

[yocto] How do I write a yocto/bitbake recipe to replace the default vsftpd.conf file with my own filE?

2017-07-25 Thread Mohammad Nouri
Hi, I want to replace the default vsftpd.conf file with my own file! My bitbake file looks following: bbexample_1.0.bb DESCRIPTION = "Configuration and extra files for TX28" LICENSE = "CLOSED" LIC_FILES_CHKSUM = "" S = "${WORKDIR}" SRC_URI += " \ file://ld.so.conf \

Re: [yocto] How do I write a yocto/bitbake recipe to replace the default vsftpd.conf file with my own file?

2017-07-25 Thread Paul Eggleton
FYI, "recipetool appendfile" can help you create this. See the "recipetool appendfile --help" output for details. Cheers, Paul On Monday, 24 July 2017 11:27:17 AM CEST Burton, Ross wrote: > The package that generates will conflict with the real one. > > Write a bbappend for the recipe you want

Re: [yocto] How do I write a yocto/bitbake recipe to replace the default vsftpd.conf file with my own file?

2017-07-24 Thread Burton, Ross
The package that generates will conflict with the real one. Write a bbappend for the recipe you want to replace the files in, add the files to SRC_URI, and use do_install_append() to overwrite the files in ${D}. Ross On 24 July 2017 at 06:26, Bacheh Karaji wrote: > Hi,

[yocto] How do I write a yocto/bitbake recipe to replace the default vsftpd.conf file with my own file?

2017-07-23 Thread Bacheh Karaji
Hi,I want to replace the default vsftpd.conf file with my own file!My bitbake file looks following: bbexample_1.0.bb    DESCRIPTION = "Configuration and extra files for TX28"    LICENSE = "CLOSED"    LIC_FILES_CHKSUM = ""        S = "${WORKDIR}"        SRC_URI += " \        file://ld.so.conf \