Re: [yocto] out of kernel custom module build fails

2020-08-06 Thread Quentin Schulz
Hi Rob, On Thu, Aug 06, 2020 at 12:37:15PM -0400, Rob Prowel wrote: > On 2020-08-06 11:45, Rob Prowel wrote: > > the important bb file content is: > > > > inherit module > > SRC_URI = "file://Makefile \ > >    file://customslip.c \ > >    file://customslip.h \ > >   

Re: [yocto] out of kernel custom module build fails

2020-08-06 Thread Rob Prowel
On 2020-08-06 11:45, Rob Prowel wrote: the important bb file content is: inherit module SRC_URI = "file://Makefile \    file://customslip.c \    file://customslip.h \    file://COPYING \   " S = "${WORKDIR}" RPROVIDES_${PN} += "kernel-module-customslip"

[yocto] out of kernel custom module build fails

2020-08-06 Thread Rob Prowel
I need to build a custom slip driver out of the normal kernel build process and I've overridden the var LINUX_VERSION_EXTENSION = \ "-${PROMPT}-$(/bin/date +%j%H%M)${PM1_DEVEL_IMAGE}" so that my kernel always has a unique identifier for the development build I'm working on. problem is