[yocto] Building multipartition images

2020-01-16 Thread morgan . hill
Hello all, I would link to have a read only / partition and a writeable /etc partition. The pain point I'm running into is populating /etc from the rootfs. The quick solution is to script the creation of disk images from the rootfs, outside the bitbake tool chain, however this seems non ideal. I

Re: [yocto] Building multipartition images

2020-01-16 Thread Maciej Pijanowski
On 16.01.2020 11:41, morgan.h...@holoplot.com wrote: Hello all, I would link to have a read only / partition and a writeable /etc partition. The pain point I'm running into is populating /etc from the rootfs. The quick solution is to script the creation of disk images from the rootfs, outside t

Re: [yocto] Building multipartition images

2020-01-16 Thread morgan . hill
> Using wic you can exclude one directory from the partition and > install > it into another partition. Example I've used some time ago: > https://github.com/3mdeb/meta-rte/blob/master/wic/sunxi-mmc-spl.wks#L4 Thanks, it looks like the rootfs-dir and exclude-path option is exactly what I need. -=