mirror of
https://github.com/drasko/codezero.git
synced 2026-07-11 01:44:13 +02:00
Significant cleanup to how configuration files are generated.
Default autogenerated version works. Need to sort out config options
This commit is contained in:
@@ -10,13 +10,13 @@ PROJROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
|
||||
BUILDDIR = join(PROJROOT, "build")
|
||||
TOOLSDIR = join(PROJROOT, "tools")
|
||||
CML2_CONFIG_SRCDIR = join(PROJROOT, "config/cml")
|
||||
CML2_CML_FILE = join(CML2_CONFIG_SRCDIR, 'out.cml')
|
||||
CML2_CONT_DEFFILE = join(PROJROOT, 'config/cml/container.template.cml')
|
||||
CML2_CONT_DEFFILE = join(PROJROOT, 'config/cml/container_ruleset.template')
|
||||
CML2TOOLSDIR = join(TOOLSDIR, "cml2-tools")
|
||||
CML2RULES = join(BUILDDIR, "cml2_rules.out")
|
||||
CML2_CONFIG_FILE = join(BUILDDIR, "cml2_config.out")
|
||||
CML2_OLDCONFIG_FILE = join(BUILDDIR, "cml2_oldconfig.in")
|
||||
CML2_CONFIG_H = join(BUILDDIR, "cml2_config.h")
|
||||
CML2_COMPILED_RULES = join(BUILDDIR, "rules.compiled")
|
||||
CML2_CONFIG_FILE = join(BUILDDIR, "config.cml")
|
||||
CML2_OLDCONFIG_FILE = join(BUILDDIR, "oldconfig.cml.in")
|
||||
CML2_CONFIG_H = join(BUILDDIR, "config.h")
|
||||
CML2_AUTOGEN_RULES = join(BUILDDIR, 'config.rules')
|
||||
CONFIG_H = join("include/l4/config.h")
|
||||
CONFIG_SHELVE_DIR = join(BUILDDIR, "configdata")
|
||||
CONFIG_SHELVE_FILENAME = "configuration"
|
||||
|
||||
Reference in New Issue
Block a user