Commit 07e4c41f by Bogdan Purcareata Committed by Stéphane Graber

lxc-busybox: Remove warning for dynamically linked Busybox

The warning has been present since commit 32b37181 (with no purpose stated). Support for dynamically linked Busybox has been added since commit bf6cc736. Haven't encountered any issues with dynamically linked Busybox in my last 2 years' testing. Signed-off-by: 's avatarBogdan Purcareata <bogdan.purcareata@nxp.com> Acked-by: 's avatarStéphane Graber <stgraber@ubuntu.com>
parent cce8b5cf
...@@ -304,13 +304,6 @@ configure_busybox() ...@@ -304,13 +304,6 @@ configure_busybox()
return 1 return 1
fi fi
file -L $(which busybox) | grep -q "statically linked"
if [ $? -ne 0 ]; then
echo "warning : busybox is not statically linked."
echo "warning : The template script may not correctly"
echo "warning : setup the container environment."
fi
# copy busybox in the rootfs # copy busybox in the rootfs
cp $(which busybox) $rootfs/bin cp $(which busybox) $rootfs/bin
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment