From b82850d1c9ae819bac7ba6fecaace62809ae67fe Mon Sep 17 00:00:00 2001 From: James Le Cuirot Date: Wed, 10 Dec 2025 10:16:26 +0000 Subject: [PATCH] set_lsb_release: Drop the "Oklo" release codename It was never updated in a meaningful way. It was only used directly in lsb_release, which is a dead standard. It was included in the os-release `PRETTY_NAME` but not as a field on its own. Closes: https://github.com/flatcar/scripts/pull/88 Signed-off-by: James Le Cuirot --- build_library/set_lsb_release | 6 ++---- changelog/changes/2026-02-23-oklo-codename.md | 1 + 2 files changed, 3 insertions(+), 4 deletions(-) create mode 100644 changelog/changes/2026-02-23-oklo-codename.md diff --git a/build_library/set_lsb_release b/build_library/set_lsb_release index f86c968909..7705b16490 100755 --- a/build_library/set_lsb_release +++ b/build_library/set_lsb_release @@ -26,10 +26,9 @@ ROOT_FS_DIR="$FLAGS_root" [ -d "$ROOT_FS_DIR" ] || die "Root FS does not exist? ($ROOT_FS_DIR)" OS_NAME="Flatcar Container Linux by Kinvolk" -OS_CODENAME="Oklo" OS_ID="flatcar" OS_ID_LIKE="coreos" -OS_PRETTY_NAME="$OS_NAME $FLATCAR_VERSION (${OS_CODENAME})" +OS_PRETTY_NAME="$OS_NAME $FLATCAR_VERSION" FLATCAR_APPID="{e96281a6-d1af-4bde-9a0a-97b76e56dc57}" @@ -38,8 +37,7 @@ sudo mkdir -p "${ROOT_FS_DIR}/usr/share/flatcar" "${ROOT_FS_DIR}/etc/flatcar" sudo_clobber "${ROOT_FS_DIR}/usr/share/flatcar/lsb-release" <