File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55package main
66
77import (
8- //"os"
98 _ "embed"
109)
1110
1211//go:embed CONFIG
1312var linuxconfig []byte
1413//go:embed COREBOOTCONFIG
1514var 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- // }
Original file line number Diff line number Diff line change @@ -2,9 +2,6 @@ module github.com/linuxboot/corebootnerf
22
33go 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
107require github.com/stretchr/testify v1.10.0 // indirect
Original file line number Diff line number Diff line change @@ -4,8 +4,6 @@ github.com/go-ini/ini v1.67.0 h1:z6ZrTEZqSWOTyH2FlglNbNgARyHG8oLW9gMELqKr06A=
44github.com/go-ini/ini v1.67.0 /go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8 =
55github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
66github.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 =
97github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA =
108github.com/stretchr/testify v1.10.0 /go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY =
119gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA =
Original file line number Diff line number Diff 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 = ""
You can’t perform that action at this time.
0 commit comments