Skip to content
Snippets Groups Projects
Commit a37ffed0 authored by Christopher Spinrath's avatar Christopher Spinrath
Browse files

config: read configurable options from defaults settings

parent 077073d2
No related branches found
No related tags found
No related merge requests found
...@@ -4,9 +4,8 @@ CONFIG_FILE=$(CURDIR)/config/Makefile.conf ...@@ -4,9 +4,8 @@ CONFIG_FILE=$(CURDIR)/config/Makefile.conf
include $(CONFIG_FILE_DEFAULTS) include $(CONFIG_FILE_DEFAULTS)
include $(CONFIG_FILE) include $(CONFIG_FILE)
#list of offically supported config options; they should have a default value in CONFIG_FILE_DEFAULTS #read all offically config options from CONFIG_FILE_DEFAULTS
CONFIGURABLE=PRIMARY_ARCH SECONDARY_ARCH WORKSPACE ISO_BASE_URL ISO_RELEASE ISO_VERSION ISO_FLAVOR \ CONFIGURABLE=$(shell cat "$(CONFIG_FILE_DEFAULTS)" | grep -v "^\#" | cut -s -d"=" -f1)
IMAGE_GIT_URL IMAGE_GIT_BRANCH
ifndef ARCH ifndef ARCH
ARCH=$(PRIMARY_ARCH) ARCH=$(PRIMARY_ARCH)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment