Revision 97ab4f17
Added by Renato Botelho about 9 years ago
build.sh | ||
---|---|---|
62 | 62 |
echo " --setup - Install required repo and ports builder require to work" |
63 | 63 |
echo " --update-sources - Refetch FreeBSD sources" |
64 | 64 |
echo " --rsync-repos - rsync pkg repos" |
65 |
echo " --print-flags - Show current builder configuration" |
|
66 | 65 |
echo " --clean-builder - clean all builder used data/resources" |
67 | 66 |
echo " --build-kernels - build all configured kernels" |
68 | 67 |
echo " --build-kernel argument - build specified kernel. Example --build-kernel KERNEL_NAME" |
... | ... | |
159 | 158 |
--update-sources) |
160 | 159 |
BUILDACTION="updatesources" |
161 | 160 |
;; |
162 |
--print-flags) |
|
163 |
BUILDACTION="printflags" |
|
164 |
_USE_OLD_DATESTRING=YES |
|
165 |
;; |
|
166 | 161 |
--clean-builder) |
167 | 162 |
BUILDACTION="cleanbuilder" |
168 | 163 |
;; |
... | ... | |
261 | 256 |
cleanbuilder) |
262 | 257 |
clean_builder |
263 | 258 |
;; |
264 |
printflags) |
|
265 |
print_flags |
|
266 |
;; |
|
267 | 259 |
images) |
268 | 260 |
# It will be handled below |
269 | 261 |
;; |
... | ... | |
395 | 387 |
# Ensure binaries are present that builder system requires |
396 | 388 |
builder_setup |
397 | 389 |
|
398 |
# Output build flags |
|
399 |
print_flags |
|
400 |
|
|
401 | 390 |
# Check to see if pre-staging will be hosted on ram |
402 | 391 |
prestage_on_ram_setup |
403 | 392 |
|
Also available in: Unified diff
Retire print_flags