diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2014-12-10 07:39:58 +0100 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2014-12-10 07:39:58 +0100 |
commit | 1f7f6dd88a36403c0bc877ee6c4a58f7acfc2034 (patch) | |
tree | b98ff62505af2e1d3b2e0e394ffb92f81239cfec /scripts/build/config | |
parent | 7b6dfd9d167b5ef09c6c1812f17e6df302f45897 (diff) | |
download | vyos-live-build-1f7f6dd88a36403c0bc877ee6c4a58f7acfc2034.tar.gz vyos-live-build-1f7f6dd88a36403c0bc877ee6c4a58f7acfc2034.zip |
Cleaning up from python removal (LIVE_IMAGE_ARCHITECTURE).
Diffstat (limited to 'scripts/build/config')
-rwxr-xr-x | scripts/build/config | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build/config b/scripts/build/config index e3b1e5170..a49154ec1 100755 --- a/scripts/build/config +++ b/scripts/build/config @@ -347,7 +347,7 @@ Local_arguments () # config/bootstrap -a|--architectures) - LIVE_IMAGE_ARCHITECTURE="${2}" + LB_ARCHITECTURES="${2}" shift 2 ;; @@ -883,10 +883,10 @@ Check_defaults if [ ! -e config ] then - Echo_message "Creating config tree for a ${LB_MODE}/${LB_DISTRIBUTION}/${LIVE_IMAGE_ARCHITECTURE} system" + Echo_message "Creating config tree for a ${LB_MODE}/${LB_DISTRIBUTION}/${LB_ARCHITECTURES} system" mkdir config else - Echo_message "Updating config tree for a ${LB_MODE}/${LB_DISTRIBUTION}/${LIVE_IMAGE_ARCHITECTURE} system" + Echo_message "Updating config tree for a ${LB_MODE}/${LB_DISTRIBUTION}/${LB_ARCHITECTURES} system" fi # Creating live-build configuration @@ -1373,7 +1373,7 @@ fi cat > config/build << EOF [Image] -Architecture: ${LIVE_IMAGE_ARCHITECTURE} +Architecture: ${LB_ARCHITECTURES} Archive-Areas: ${LIVE_IMAGE_ARCHIVE_AREAS} Distribution: ${LB_DISTRIBUTION} Mirror-Bootstrap: ${LB_MIRROR_BOOTSTRAP} |