forked from u-root/u-root
-
Notifications
You must be signed in to change notification settings - Fork 0
/
templates.go
189 lines (187 loc) · 7.17 KB
/
templates.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
// Copyright 2015-2018 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
var templates = map[string][]string{
"all": {
"github.com/u-root/u-root/cmds/*",
},
// Core should be things you don't want to live without.
"core": {
"github.com/u-root/u-root/cmds/ansi",
"github.com/u-root/u-root/cmds/boot",
"github.com/u-root/u-root/cmds/cat",
"github.com/u-root/u-root/cmds/cbmem",
"github.com/u-root/u-root/cmds/chmod",
"github.com/u-root/u-root/cmds/chroot",
"github.com/u-root/u-root/cmds/cmp",
"github.com/u-root/u-root/cmds/console",
"github.com/u-root/u-root/cmds/cp",
"github.com/u-root/u-root/cmds/cpio",
"github.com/u-root/u-root/cmds/date",
"github.com/u-root/u-root/cmds/dd",
"github.com/u-root/u-root/cmds/df",
"github.com/u-root/u-root/cmds/dhclient",
"github.com/u-root/u-root/cmds/dirname",
"github.com/u-root/u-root/cmds/dmesg",
"github.com/u-root/u-root/cmds/echo",
"github.com/u-root/u-root/cmds/elvish",
"github.com/u-root/u-root/cmds/false",
"github.com/u-root/u-root/cmds/field",
"github.com/u-root/u-root/cmds/find",
"github.com/u-root/u-root/cmds/free",
"github.com/u-root/u-root/cmds/freq",
"github.com/u-root/u-root/cmds/gpgv",
"github.com/u-root/u-root/cmds/gpt",
"github.com/u-root/u-root/cmds/grep",
"github.com/u-root/u-root/cmds/gzip",
"github.com/u-root/u-root/cmds/hexdump",
"github.com/u-root/u-root/cmds/hostname",
"github.com/u-root/u-root/cmds/id",
"github.com/u-root/u-root/cmds/init",
"github.com/u-root/u-root/cmds/insmod",
"github.com/u-root/u-root/cmds/installcommand",
"github.com/u-root/u-root/cmds/io",
"github.com/u-root/u-root/cmds/ip",
"github.com/u-root/u-root/cmds/kexec",
"github.com/u-root/u-root/cmds/kill",
"github.com/u-root/u-root/cmds/lddfiles",
"github.com/u-root/u-root/cmds/ln",
"github.com/u-root/u-root/cmds/losetup",
"github.com/u-root/u-root/cmds/ls",
"github.com/u-root/u-root/cmds/lsmod",
"github.com/u-root/u-root/cmds/mkdir",
"github.com/u-root/u-root/cmds/mkfifo",
"github.com/u-root/u-root/cmds/mknod",
"github.com/u-root/u-root/cmds/modprobe",
"github.com/u-root/u-root/cmds/mount",
"github.com/u-root/u-root/cmds/msr",
"github.com/u-root/u-root/cmds/mv",
"github.com/u-root/u-root/cmds/netcat",
"github.com/u-root/u-root/cmds/ntpdate",
"github.com/u-root/u-root/cmds/pci",
"github.com/u-root/u-root/cmds/ping",
"github.com/u-root/u-root/cmds/printenv",
"github.com/u-root/u-root/cmds/ps",
"github.com/u-root/u-root/cmds/pwd",
"github.com/u-root/u-root/cmds/pxeboot",
"github.com/u-root/u-root/cmds/readlink",
"github.com/u-root/u-root/cmds/rm",
"github.com/u-root/u-root/cmds/rmmod",
"github.com/u-root/u-root/cmds/rsdp",
"github.com/u-root/u-root/cmds/seq",
"github.com/u-root/u-root/cmds/shutdown",
"github.com/u-root/u-root/cmds/sleep",
"github.com/u-root/u-root/cmds/sort",
"github.com/u-root/u-root/cmds/stty",
"github.com/u-root/u-root/cmds/switch_root",
"github.com/u-root/u-root/cmds/sync",
"github.com/u-root/u-root/cmds/tail",
"github.com/u-root/u-root/cmds/tee",
"github.com/u-root/u-root/cmds/true",
"github.com/u-root/u-root/cmds/truncate",
"github.com/u-root/u-root/cmds/umount",
"github.com/u-root/u-root/cmds/uname",
"github.com/u-root/u-root/cmds/uniq",
"github.com/u-root/u-root/cmds/unshare",
"github.com/u-root/u-root/cmds/validate",
"github.com/u-root/u-root/cmds/vboot",
"github.com/u-root/u-root/cmds/wc",
"github.com/u-root/u-root/cmds/wget",
"github.com/u-root/u-root/cmds/which",
},
// Minimal should be things you can't live without.
"minimal": {
"github.com/u-root/u-root/cmds/cat",
"github.com/u-root/u-root/cmds/chmod",
"github.com/u-root/u-root/cmds/cmp",
"github.com/u-root/u-root/cmds/console",
"github.com/u-root/u-root/cmds/cp",
"github.com/u-root/u-root/cmds/date",
"github.com/u-root/u-root/cmds/dd",
"github.com/u-root/u-root/cmds/df",
"github.com/u-root/u-root/cmds/dhclient",
"github.com/u-root/u-root/cmds/dmesg",
"github.com/u-root/u-root/cmds/echo",
"github.com/u-root/u-root/cmds/elvish",
"github.com/u-root/u-root/cmds/find",
"github.com/u-root/u-root/cmds/free",
"github.com/u-root/u-root/cmds/gpgv",
"github.com/u-root/u-root/cmds/grep",
"github.com/u-root/u-root/cmds/gzip",
"github.com/u-root/u-root/cmds/hostname",
"github.com/u-root/u-root/cmds/id",
"github.com/u-root/u-root/cmds/init",
"github.com/u-root/u-root/cmds/insmod",
"github.com/u-root/u-root/cmds/io",
"github.com/u-root/u-root/cmds/ip",
"github.com/u-root/u-root/cmds/kexec",
"github.com/u-root/u-root/cmds/kill",
"github.com/u-root/u-root/cmds/ln",
"github.com/u-root/u-root/cmds/losetup",
"github.com/u-root/u-root/cmds/ls",
"github.com/u-root/u-root/cmds/lsmod",
"github.com/u-root/u-root/cmds/mkdir",
"github.com/u-root/u-root/cmds/mknod",
"github.com/u-root/u-root/cmds/modprobe",
"github.com/u-root/u-root/cmds/mount",
"github.com/u-root/u-root/cmds/msr",
"github.com/u-root/u-root/cmds/mv",
"github.com/u-root/u-root/cmds/pci",
"github.com/u-root/u-root/cmds/ping",
"github.com/u-root/u-root/cmds/printenv",
"github.com/u-root/u-root/cmds/ps",
"github.com/u-root/u-root/cmds/pwd",
"github.com/u-root/u-root/cmds/readlink",
"github.com/u-root/u-root/cmds/rm",
"github.com/u-root/u-root/cmds/rmmod",
"github.com/u-root/u-root/cmds/seq",
"github.com/u-root/u-root/cmds/shutdown",
"github.com/u-root/u-root/cmds/sleep",
"github.com/u-root/u-root/cmds/sync",
"github.com/u-root/u-root/cmds/tail",
"github.com/u-root/u-root/cmds/tee",
"github.com/u-root/u-root/cmds/truncate",
"github.com/u-root/u-root/cmds/umount",
"github.com/u-root/u-root/cmds/uname",
"github.com/u-root/u-root/cmds/unshare",
"github.com/u-root/u-root/cmds/wc",
"github.com/u-root/u-root/cmds/wget",
"github.com/u-root/u-root/cmds/which",
},
// coreboot-app minimal environment
"coreboot-app": {
"github.com/u-root/u-root/cmds/cat",
"github.com/u-root/u-root/cmds/cbmem",
"github.com/u-root/u-root/cmds/chroot",
"github.com/u-root/u-root/cmds/console",
"github.com/u-root/u-root/cmds/cp",
"github.com/u-root/u-root/cmds/dd",
"github.com/u-root/u-root/cmds/dhclient",
"github.com/u-root/u-root/cmds/dmesg",
"github.com/u-root/u-root/cmds/elvish",
"github.com/u-root/u-root/cmds/find",
"github.com/u-root/u-root/cmds/grep",
"github.com/u-root/u-root/cmds/id",
"github.com/u-root/u-root/cmds/init",
"github.com/u-root/u-root/cmds/insmod",
"github.com/u-root/u-root/cmds/ip",
"github.com/u-root/u-root/cmds/kill",
"github.com/u-root/u-root/cmds/ls",
"github.com/u-root/u-root/cmds/modprobe",
"github.com/u-root/u-root/cmds/mount",
"github.com/u-root/u-root/cmds/pci",
"github.com/u-root/u-root/cmds/ping",
"github.com/u-root/u-root/cmds/ps",
"github.com/u-root/u-root/cmds/pwd",
"github.com/u-root/u-root/cmds/rm",
"github.com/u-root/u-root/cmds/rmmod",
"github.com/u-root/u-root/cmds/shutdown",
"github.com/u-root/u-root/cmds/sshd",
"github.com/u-root/u-root/cmds/switch_root",
"github.com/u-root/u-root/cmds/tail",
"github.com/u-root/u-root/cmds/tee",
"github.com/u-root/u-root/cmds/uname",
"github.com/u-root/u-root/cmds/wget",
},
}