From c6e427d80dd3c22a4aa49a9bb8e4ce6ddffe8b3f Mon Sep 17 00:00:00 2001 From: Kai Lueke Date: Fri, 11 Mar 2022 14:52:28 +0100 Subject: [PATCH] profiles: disable SYMLINK_LIB The profile Flatcar is on had SYMLINK_LIB set for amd64 which set up (/usr)/lib as symlink to (/usr)/lib64. This is not the case for arm64 nor common in other recent distributions and causes systemd-sysext loading to fail. Disable SYMLINK_LIB for the amd64 board for now, leaving the SDK as is but we could also set it for the SDK, too. A future profile update will also bring this change. --- .../profiles/coreos/targets/generic/make.defaults | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sdk_container/src/third_party/coreos-overlay/profiles/coreos/targets/generic/make.defaults b/sdk_container/src/third_party/coreos-overlay/profiles/coreos/targets/generic/make.defaults index 395339442f..c3e0e2f642 100644 --- a/sdk_container/src/third_party/coreos-overlay/profiles/coreos/targets/generic/make.defaults +++ b/sdk_container/src/third_party/coreos-overlay/profiles/coreos/targets/generic/make.defaults @@ -98,3 +98,6 @@ ACCT_USER_SYSTEMD_RESOLVE_ID=245 # tss seems to be one of those users with a mismatching UID/GID ACCT_GROUP_TSS_ID=252 ACCT_USER_TSS_ID=236 + +# Disable creation of /usr/lib as symlink +SYMLINK_LIB="no"