config: move defaults set in wrong function
Gbp-Dch: Ignore
This commit is contained in:
parent
39e4d3e3cb
commit
430fdc3040
|
@ -578,6 +578,15 @@ Set_config_defaults ()
|
|||
# Setting image type
|
||||
LB_SOURCE_IMAGES="${LB_SOURCE_IMAGES:-tar}"
|
||||
LB_SOURCE_IMAGES="$(echo "${LB_SOURCE_IMAGES}" | tr "," " ")"
|
||||
|
||||
# Architectures to use foreign bootstrap for
|
||||
LB_BOOTSTRAP_QEMU_ARCHITECTURES="${LB_BOOTSTRAP_QEMU_ARCHITECTURES:-}"
|
||||
|
||||
# Packages to exclude for the foreign/ports bootstrapping
|
||||
LB_BOOTSTRAP_QEMU_EXCLUDE="${LB_BOOTSTRAP_QEMU_EXCLUDE:-}"
|
||||
|
||||
# Ports using foreign bootstrap need a working qemu-*-system. This is the location it
|
||||
LB_BOOTSTRAP_QEMU_STATIC="${LB_BOOTSTRAP_QEMU_STATIC:-}"
|
||||
}
|
||||
|
||||
Check_config_defaults ()
|
||||
|
@ -657,13 +666,4 @@ Check_config_defaults ()
|
|||
Echo_warning "You have specified a value of LB_ISO_VOLUME that is too long; the maximum length is 32 characters."
|
||||
fi
|
||||
|
||||
# Architectures to use foreign bootstrap for
|
||||
LB_BOOTSTRAP_QEMU_ARCHITECTURES="${LB_BOOTSTRAP_QEMU_ARCHITECTURES:-}"
|
||||
|
||||
# Packages to exclude for the foreign/ports bootstrapping
|
||||
LB_BOOTSTRAP_QEMU_EXCLUDE="${LB_BOOTSTRAP_QEMU_EXCLUDE:-}"
|
||||
|
||||
# Ports using foreign bootstrap need a working qemu-*-system. This is the location it
|
||||
LB_BOOTSTRAP_QEMU_STATIC="${LB_BOOTSTRAP_QEMU_STATIC:-}"
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue