Hi,
Now I tried core-image-base on Yocto Zeus for an Embedded Linux board and during the build I found that the following packages are missing in the container:
- bc
- rsync
- linux-headers
This has forced me to install them manually as docker exec -u root <container_id> apt install rsync bc linux-headers-$(uname -r) -y. Despite the fact it's one-liner I had to run this command on every docker run (since it's recommended to delete the container on exit).
So it'll be useful if the above mentioned packages are added to default container image and I hope (tested to some extent) that the addition of these packages won't break the existing functionalities.
Thanks,
Daniel Selvan D
Hi,
Now I tried
core-image-baseon Yocto Zeus for an Embedded Linux board and during the build I found that the following packages are missing in the container:This has forced me to install them manually as
docker exec -u root <container_id> apt install rsync bc linux-headers-$(uname -r) -y. Despite the fact it's one-liner I had to run this command on every docker run (since it's recommended to delete the container on exit).So it'll be useful if the above mentioned packages are added to default container image and I hope (tested to some extent) that the addition of these packages won't break the existing functionalities.
Thanks,
Daniel Selvan D