Re: [yocto] [meta-raspberrypi] Recipe To Add 3 Script Files To /etc/ppp/peers/

2016-11-30 Thread Thomas Thorne
Thank you for your assistance. The final recipe I used looks like this: # # Copy the ppp script files for chips to the target filesystem # These files are based on the details provided in # SUMMARY = "PPP Scripts for Basic Chip Operation" SECTION = "net" LICENSE = "MIT" LIC_FILES_CHKSUM = "fil

Re: [yocto] [meta-raspberrypi] Recipe To Add 3 Script Files To /etc/ppp/peers/

2016-11-29 Thread Miguel Aveiro
I think you might have already found an answer, but I don't think it's wise to override the do_install method. Plus, you should also populate your "${D}" folder, which is "${WORKDIR}/image"; instead of ${IMAGE_ROOTFS}, which is "${WORKDIR}/rootfs". AFAIK, the way you're doing, the contents of D wi

[yocto] [meta-raspberrypi] Recipe To Add 3 Script Files To /etc/ppp/peers/

2016-11-25 Thread Thomas A. F. Thorne MEng AUS MIET
I want to add 3 script files /ppp/peers/. I am targeting a Raspberry Pi 3 but I would have though that adding non-compiled files to the root file-system was a fairly generic thing to do. Is there an example of how to do this somewhere? Either a How To write up or an existing recipie that takes