mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-27 02:54:27 +01:00
Gopkg.lock says it's "dbea6f2bd41658b84b00417ceefa416b979cbf10"
but it is actually "5017d4e9a9cf2d4381db99eacd9baf84b95bfb14".
We need to make sure Gopkg.lock does not lie otherwise `dep ensure`
would really fetch the locked revision and it causes build failure
due to API changes.
Introduced by: 76d9db3e0b (vendor: Add github.com/gogo/protobuf).
While at it, constraint containerd/cgroups to a working revision.
Fixes: #1447
Signed-off-by: Peng Tao <bergwolf@hyper.sh>
28 lines
747 B
Go
28 lines
747 B
Go
/*
|
|
* HCS API
|
|
*
|
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
*
|
|
* API version: 2.1
|
|
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
|
|
*/
|
|
|
|
package hcsschema
|
|
|
|
type Chipset struct {
|
|
Uefi *Uefi `json:"Uefi,omitempty"`
|
|
|
|
IsNumLockDisabled bool `json:"IsNumLockDisabled,omitempty"`
|
|
|
|
BaseBoardSerialNumber string `json:"BaseBoardSerialNumber,omitempty"`
|
|
|
|
ChassisSerialNumber string `json:"ChassisSerialNumber,omitempty"`
|
|
|
|
ChassisAssetTag string `json:"ChassisAssetTag,omitempty"`
|
|
|
|
UseUtc bool `json:"UseUtc,omitempty"`
|
|
|
|
// LinuxKernelDirect - Added in v2.2 Builds >=181117
|
|
LinuxKernelDirect *LinuxKernelDirect `json:"LinuxKernelDirect,omitempty"`
|
|
}
|