Skip to content

Commit d190d3c

Browse files
machines: pin celestica cls_ds4101 kernel to 5.4.86
cls_ds4101 carries kernel patches (cls-lpc-basecpld, enable-kernel-spcr) but pinned no kernel version, so it floated on the default. The toolchain milestone bumped the default to 6.18 LTS, which its older patches do not apply to. Pin it to 5.4.86 -- the prior default it was already building against -- so this change is a no-op for the platform. Whether it still builds on the modern toolchain is its owner's concern; this only avoids us silently moving it off its kernel. Signed-off-by: Brad House <bhouse@nexthop.ai>
1 parent cce4a66 commit d190d3c

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

machine/celestica/cls_ds4101/machine.make

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,11 @@ CONSOLE_DEV = 0
101101
# Include additional files in the installer image. This is useful to
102102
# share code between the ONIE run-time and the installer.
103103
UPDATER_IMAGE_PARTS_PLATFORM = $(MACHINEDIR)/rootconf/sysroot-lib-onie/test-install-sharing
104-
#LINUX_VERSION = 4.9
105-
#LINUX_MINOR_VERSION = 95
104+
# This platform carries kernel patches written against the previous default
105+
# kernel, so pin it there explicitly (no behavior change) instead of letting
106+
# it float onto a newer default its patches would not apply to.
107+
LINUX_VERSION = 5.4
108+
LINUX_MINOR_VERSION = 86
106109

107110
# Secure GRUB requires Secure Boot extensions
108111
ifeq ($(SECURE_GRUB),yes)

0 commit comments

Comments
 (0)