File tree Expand file tree Collapse file tree 3 files changed +24
-3
lines changed
Expand file tree Collapse file tree 3 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 1+ // This Source Code Form is subject to the terms of the Mozilla Public
2+ // License, v. 2.0. If a copy of the MPL was not distributed with this
3+ // file, You can obtain one at http://mozilla.org/MPL/2.0/.
4+
5+ //go:build !amd64.v1
6+
7+ package constants
8+
9+ const (
10+ // MinimumGOAMD64Level is the minimum x86_64 microarchitecture level required by Talos.
11+ MinimumGOAMD64Level = 2
12+ )
Original file line number Diff line number Diff line change 1+ // This Source Code Form is subject to the terms of the Mozilla Public
2+ // License, v. 2.0. If a copy of the MPL was not distributed with this
3+ // file, You can obtain one at http://mozilla.org/MPL/2.0/.
4+
5+ //go:build amd64.v1
6+
7+ package constants
8+
9+ const (
10+ // MinimumGOAMD64Level is the minimum x86_64 microarchitecture level required by Talos.
11+ MinimumGOAMD64Level = 1
12+ )
Original file line number Diff line number Diff line change @@ -1231,9 +1231,6 @@ const (
12311231 // SyslogListenSocketPath is the path to the syslog socket.
12321232 SyslogListenSocketPath = "/dev/log"
12331233
1234- // MinimumGOAMD64Level is the minimum x86_64 microarchitecture level required by Talos.
1235- MinimumGOAMD64Level = 2
1236-
12371234 // ConsoleLogErrorSuppressThreshold is the threshold for suppressing console log errors.
12381235 ConsoleLogErrorSuppressThreshold = 4
12391236
You can’t perform that action at this time.
0 commit comments