From c522b04f2a64d86982237d08d4c951b6eea1dba7 Mon Sep 17 00:00:00 2001 From: Thilo Fromm Date: Fri, 27 Oct 2023 14:21:21 +0200 Subject: [PATCH] build_sysext: let strip_binaries default to false Signed-off-by: Thilo Fromm --- build_sysext | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_sysext b/build_sysext index 86954e639c..95bc35c569 100755 --- a/build_sysext +++ b/build_sysext @@ -25,8 +25,8 @@ DEFINE_string squashfs_base '' \ "The path to the squashfs base image. Defaults to the most current image built in '${default_imagedir}/${FLATCAR_PRODUCTION_IMAGE_SYSEXT_BASE}'." DEFINE_string image_builddir '' \ "Custom directory to build the sysext in. Defaults to a 'sysext' sub-directory of the directory the squashfs base image resides in; '${default_imagedir}/sysext' by default." -DEFINE_boolean strip_binaries "${FLAGS_TRUE}" \ - "After installation, scan sysext root for unstripped binaries and strip these." +DEFINE_boolean strip_binaries "${FLAGS_FALSE}" \ + "After installation, scan sysext root for unstripped binaries and strip these. WARNING - this can subtly break some packages, e.g. Docker (see https://github.com/moby/moby/blob/master/project/PACKAGERS.md#stripping-binaries)." DEFINE_string manglefs_script '' \ "A path to executable that will customize the rootfs of the sysext image." DEFINE_boolean generate_pkginfo "${FLAGS_FALSE}" \