mirror of
https://github.com/opencontainers/runc.git
synced 2025-11-01 03:22:38 +08:00
Bumps [github.com/cilium/ebpf](https://github.com/cilium/ebpf) from 0.16.0 to 0.17.0. - [Release notes](https://github.com/cilium/ebpf/releases) - [Commits](https://github.com/cilium/ebpf/compare/v0.16.0...v0.17.0) --- updated-dependencies: - dependency-name: github.com/cilium/ebpf dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
32 lines
712 B
Go
32 lines
712 B
Go
package linux
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
// FindKConfig searches for a kconfig file on the host.
|
|
//
|
|
// It first reads from /boot/config- of the current running kernel and tries
|
|
// /proc/config.gz if nothing was found in /boot.
|
|
// If none of the file provide a kconfig, it returns an error.
|
|
func FindKConfig() (*os.File, error) {
|
|
kernelRelease, err := KernelRelease()
|
|
if err != nil {
|
|
return nil, fmt.Errorf("cannot get kernel release: %w", err)
|
|
}
|
|
|
|
path := "/boot/config-" + kernelRelease
|
|
f, err := os.Open(path)
|
|
if err == nil {
|
|
return f, nil
|
|
}
|
|
|
|
f, err = os.Open("/proc/config.gz")
|
|
if err == nil {
|
|
return f, nil
|
|
}
|
|
|
|
return nil, fmt.Errorf("neither %s nor /proc/config.gz provide a kconfig", path)
|
|
}
|