forked from u-root/u-root
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathu-root.go
138 lines (119 loc) · 3.46 KB
/
u-root.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
// Copyright 2015-2017 the u-root Authors. All rights reserved
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"flag"
"fmt"
"io/ioutil"
"log"
"os"
"github.com/u-root/u-root/pkg/golang"
"github.com/u-root/u-root/pkg/uroot"
)
// multiFlag is used for flags that support multiple invocations, e.g. -files
type multiFlag []string
func (m *multiFlag) String() string {
return fmt.Sprint(*m)
}
func (m *multiFlag) Set(value string) error {
*m = append(*m, value)
return nil
}
// Flags for u-root builder.
var (
build, format, tmpDir, base, outputPath *string
useExistingInit *bool
extraFiles multiFlag
)
func parseFlags() {
build = flag.String("build", "source", "u-root build format (e.g. bb or source)")
format = flag.String("format", "cpio", "Archival format (e.g. cpio)")
tmpDir = flag.String("tmpdir", "", "Temporary directory to put binaries in.")
base = flag.String("base", "", "Base archive to add files to")
useExistingInit = flag.Bool("useinit", false, "Use existing init from base archive (only if --base was specified).")
outputPath = flag.String("o", "", "Path to output initramfs file.")
flag.Var(&extraFiles, "files", "Additional files, directories, and binaries (with their ldd dependencies) to add to archive. Can be speficified multiple times")
flag.Parse()
}
func main() {
parseFlags()
// Main is in a separate functions so defers run on return.
if err := Main(); err != nil {
log.Fatal(err)
}
log.Printf("Successfully wrote initramfs.")
}
// Main is a separate function so defers are run on return, which they wouldn't
// on exit.
func Main() error {
env := golang.Default()
if env.CgoEnabled {
log.Printf("Disabling CGO for u-root...")
env.CgoEnabled = false
}
log.Printf("Build environment: %s", env)
if env.GOOS != "linux" {
log.Printf("GOOS is not linux. Did you mean to set GOOS=linux?")
}
builder, err := uroot.GetBuilder(*build)
if err != nil {
return err
}
archiver, err := uroot.GetArchiver(*format)
if err != nil {
return err
}
tempDir := *tmpDir
if tempDir == "" {
var err error
tempDir, err = ioutil.TempDir("", "u-root")
if err != nil {
return err
}
defer os.RemoveAll(tempDir)
} else if _, err := os.Stat(tempDir); os.IsNotExist(err) {
if err := os.MkdirAll(tempDir, 0755); err != nil {
return fmt.Errorf("temporary directory %q did not exist; tried to mkdir but failed: %v", tempDir, err)
}
}
// Resolve globs into package imports.
//
// Currently allowed formats:
// Go package imports; e.g. github.com/u-root/u-root/cmds/ls
// Paths to Go package directories; e.g. $GOPATH/src/github.com/u-root/u-root/cmds/*
pkgs := flag.Args()
if len(pkgs) == 0 {
var err error
pkgs, err = uroot.DefaultPackageImports(env)
if err != nil {
return err
}
}
// Open the target initramfs file.
w, err := archiver.OpenWriter(*outputPath, env.GOOS, env.GOARCH)
if err != nil {
return err
}
var baseFile uroot.ArchiveReader
if *base != "" {
bf, err := os.Open(*base)
if err != nil {
return err
}
defer bf.Close()
baseFile = archiver.Reader(bf)
}
opts := uroot.Opts{
Env: env,
Builder: builder,
Archiver: archiver,
TempDir: tempDir,
Packages: pkgs,
ExtraFiles: extraFiles,
OutputFile: w,
BaseArchive: baseFile,
UseExistingInit: *useExistingInit,
}
return uroot.CreateInitramfs(opts)
}