diff --git a/internal/pkg/platform/platform_matcher.go b/internal/pkg/platform/platform_matcher.go index 364554c953..7a4efb73e2 100644 --- a/internal/pkg/platform/platform_matcher.go +++ b/internal/pkg/platform/platform_matcher.go @@ -112,7 +112,7 @@ func getCPUVariantArm() string { // So, the "armv6-compatible" check basically checks for a "v6 or v7 CPU, but not one found listed as a known v7 one in the .proc.info.init tables of // https://github.com/torvalds/linux/blob/190bf7b14b0cf3df19c059061be032bd8994a597/arch/arm/mm/proc-v7.S . if strings.HasPrefix(strings.ToLower(model), "armv6-compatible") { - logrus.Debugf("Detected corner case, setting cpu variant to 6") + logrus.Debugf("Detected corner case, setting cpu variant to v6") variant = "v6" } else { variant = "v7"