Do not use double quotes in ISO label

Change-Id: Ib1679e89fdebf761b38ed64bcd1c40a77a4adcb3
Closes-bug: #1529916
This commit is contained in:
Dmitry Teselkin 2016-01-12 20:16:16 +03:00
parent 1471117be3
commit 1117b4ee64
1 changed files with 7 additions and 2 deletions

View File

@ -194,11 +194,16 @@ $(BUILD_DIR)/iso/isoroot.done: \
# Building CD and USB stick images
########################
# ISO_VOLUME_ID can't have whitespaces or other non-alphanumeric characters 'as is'.
# They must be represented as \xNN, where NN is the hexadecimal representation of the character.
# For example, \x20 is a white space (" ").
# This is the limitation of kickstart boot options.
ifeq ($(filter mirantis,$(FEATURE_GROUPS)),mirantis)
ISO_VOLUME_ID:="Mirantis_Fuel"
ISO_VOLUME_ID:=Mirantis_Fuel
ISO_VOLUME_PREP:="Mirantis Inc."
else
ISO_VOLUME_ID:="OpenStack_Fuel"
ISO_VOLUME_ID:=OpenStack_Fuel
ISO_VOLUME_PREP:="Fuel team"
endif