19fcd263d0
Add a default PPC block-device layout. I've extracted this into separate yaml files for ease of editing and to facilitate things like longer comments. This is not sufficient to get PPC images working, but it is required. Change-Id: I09e5d1ed92260bdb632333f5203dd7e70d512dc8
15 lines
412 B
Plaintext
15 lines
412 B
Plaintext
_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
if [[ "$ARCH" =~ "ppc" ]] ; then
|
|
DIB_BLOCK_DEVICE_DEFAULT_CONFIG="$(cat $_DIR/../block-device-ppc.yaml)"
|
|
else
|
|
DIB_BLOCK_DEVICE_DEFAULT_CONFIG="$(cat $_DIR/../block-device-default.yaml)"
|
|
fi
|
|
|
|
DIB_BLOCK_DEVICE_CONFIG=${DIB_BLOCK_DEVICE_CONFIG:-${DIB_BLOCK_DEVICE_DEFAULT_CONFIG}}
|
|
export DIB_BLOCK_DEVICE_CONFIG
|
|
|
|
# Local variables:
|
|
# mode: sh
|
|
# End:
|