2012-11-15 03:20:32 +00:00
|
|
|
# Copyright 2012 Hewlett-Packard Development Company, L.P.
|
|
|
|
# All Rights Reserved.
|
2013-01-25 22:23:56 +00:00
|
|
|
#
|
2012-11-15 03:20:32 +00:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
2013-01-25 22:23:56 +00:00
|
|
|
#
|
2012-11-15 03:20:32 +00:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2013-01-25 22:23:56 +00:00
|
|
|
#
|
2012-11-15 03:20:32 +00:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
|
2012-11-09 11:04:13 +00:00
|
|
|
# options for create-baremetal-image.sh
|
2013-02-12 06:23:34 +00:00
|
|
|
export ARCH=${ARCH:-$(dpkg --print-architecture)}
|
2012-11-09 11:04:13 +00:00
|
|
|
FS_TYPE=${FS_TYPE:-ext4}
|
|
|
|
# Used to set the file extension only at this stage.
|
|
|
|
IMAGE_TYPE=${IMAGE_TYPE:-qcow2}
|
|
|
|
IMAGE_NAME=${IMAGE_NAME:-image}
|
2013-04-10 11:42:00 +00:00
|
|
|
export DIB_IMAGE_SIZE=${DIB_IMAGE_SIZE:-2} # N.B. This size is in GB
|
2013-01-25 22:23:56 +00:00
|
|
|
# Set via the CLI normally.
|
2012-11-30 20:47:57 +00:00
|
|
|
# IMAGE_ELEMENT=
|
2013-04-07 22:26:44 +00:00
|
|
|
_BASE_ELEMENT_DIR=$(dirname $0)/../elements
|
|
|
|
ELEMENTS_PATH=${ELEMENTS_PATH:+"$ELEMENTS_PATH:$_BASE_ELEMENT_DIR"}
|
|
|
|
export ELEMENTS_PATH=${ELEMENTS_PATH:-$_BASE_ELEMENT_DIR}
|