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.
This commit is contained in:
Kai Lueke 2022-03-11 14:52:28 +01:00
parent b3f4b641ce
commit c6e427d80d

View File

@ -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"