-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig.format
48 lines (38 loc) · 1.04 KB
/
Kconfig.format
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
#
# For a description of the syntax of this configuration file,
# see the file Documentation/kbuild/kconfig-language.txt in the
# Linux kernel source tree.
#
mainmenu "Unipi Image Builder Output Format"
#choice
# prompt "Output image format"
# default IMAGE_FORMAT_TAR
config IMAGE_FORMAT_TAR
bool
prompt "Chroot directory stored as tarball"
default y
config IMAGE_FORMAT_VM
bool "Image for virtual machine VM (single ext4 fs)"
select IMAGE_FORMAT_TAR
config IMAGE_FORMAT_SWU
bool "Image packed into SWupdate format"
select IMAGE_FORMAT_TAR
config IMAGE_FORMAT_RAW
bool "Raw disc image including partition table"
select IMAGE_FORMAT_TAR
config IMAGE_FORMAT_RAWMINI
bool "Raw disc image minimal - bootloader only"
select IMAGE_FORMAT_TAR
#endchoice
config USE_PACKAGING
bool
default y if IMAGE_FORMAT_VM
default y if IMAGE_FORMAT_SWU
default y if IMAGE_FORMAT_RAW
default y if IMAGE_FORMAT_RAWMINI
config USE_VOLUMES
bool
default y if IMAGE_FORMAT_SWU
default y if IMAGE_FORMAT_RAW
default y if IMAGE_FORMAT_RAWMINI
source "volumes/Kconfig"