Re: [yocto] Hardknott - pseudo excluded from intercept_scripts

2021-05-06 Thread Richard Purdie
On Wed, 2021-05-05 at 00:56 -0700, Chuck Wolber wrote: > The following code is an effective workaround. It must be added after the > core-image is inherited. > > python () { >      pseudo_ignore_paths = d.getVar('PSEUDO_IGNORE_PATHS') >      result = ','.join([x for x in

Re: [yocto] Hardknott - pseudo excluded from intercept_scripts

2021-05-05 Thread Chuck Wolber
The following code is an effective workaround. It must be added after the core-image is inherited. python () { pseudo_ignore_paths = d.getVar('PSEUDO_IGNORE_PATHS') result = ','.join([x for x in pseudo_ignore_paths.split(',') if "intercept_scripts" not in x])

[yocto] Hardknott - pseudo excluded from intercept_scripts

2021-05-04 Thread Chuck Wolber
I was attempting an image build with Yocto Hardknott, and I ran into a chown problem during do_rootfs(). I traced it down to ${WORKDIR}/intercept_scripts showing up in the PSEUDO_IGNORE_PATHS environment variable. This commit made the change: