a8953dd277
With the old configuration structure it was only possible to use one image and one partition layout. The new block-device configuration uses a list at top level; therefore it is possible to use multiple instances of each element type. Change-Id: I9db4327486b676887d6ce09609994116dbebfc89 Signed-off-by: Andreas Florath <andreas@florath.net>
16 lines
323 B
Plaintext
16 lines
323 B
Plaintext
export DIB_BLOCK_DEVICE_DEFAULT_CONFIG="
|
|
- local_loop:
|
|
name: image0
|
|
|
|
- partitioning:
|
|
base: image0
|
|
label: mbr
|
|
partitions:
|
|
- name: root
|
|
flags: [ boot, primary ]
|
|
size: 100%
|
|
"
|
|
|
|
DIB_BLOCK_DEVICE_CONFIG=${DIB_BLOCK_DEVICE_CONFIG:-${DIB_BLOCK_DEVICE_DEFAULT_CONFIG}}
|
|
export DIB_BLOCK_DEVICE_CONFIG
|