You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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: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
The text was updated successfully, but these errors were encountered: