Skip to content

Commit 4dc03d0

Browse files
author
Michal Gorlas
committed
chore: cleanup
Signed-off-by: Michal Gorlas <micgor32@fsfe.org>
1 parent b92aae4 commit 4dc03d0

4 files changed

Lines changed: 2 additions & 23 deletions

File tree

config.go

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,10 @@
55
package main
66

77
import (
8-
//"os"
98
_ "embed"
109
)
1110

1211
//go:embed CONFIG
1312
var linuxconfig []byte
1413
//go:embed COREBOOTCONFIG
1514
var corebootconfig []byte
16-
17-
// func genConfig() error {
18-
// var err error
19-
// linuxconfig, err = os.ReadFile("CONFIG")
20-
// if err != nil {
21-
// return err
22-
// }
23-
24-
// corebootconfig, err = os.ReadFile("COREBOOTCONFIG")
25-
// if err != nil {
26-
// return err
27-
// }
28-
29-
// return nil
30-
// }

go.mod

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ module github.com/linuxboot/corebootnerf
22

33
go 1.24
44

5-
require (
6-
github.com/go-ini/ini v1.67.0
7-
github.com/spf13/pflag v1.0.5
8-
)
5+
require github.com/go-ini/ini v1.67.0
96

107
require github.com/stretchr/testify v1.10.0 // indirect

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ github.com/go-ini/ini v1.67.0 h1:z6ZrTEZqSWOTyH2FlglNbNgARyHG8oLW9gMELqKr06A=
44
github.com/go-ini/ini v1.67.0/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8=
55
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
66
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
7-
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
8-
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
97
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
108
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
119
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=

nerf.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ rootwait
2525
fetch = flag.Bool("fetch", false, "Fetch all the things we need")
2626
customkern = flag.Bool("customkern", false, "Build the kernel separately")
2727
extra = flag.String("extra", "", "Comma-separated list of extra packages to include")
28-
kernelVersion = "linux-6.14.y"
28+
kernelVersion = "linux-6.15.y"
2929
corebootVer = "25.03"
3030
workingDir = ""
3131
homeDir = ""

0 commit comments

Comments
 (0)