Significant cleanup to how configuration files are generated.

Default autogenerated version works. Need to sort out config options
This commit is contained in:
Bahadir Balban
2009-10-20 19:35:02 +03:00
parent a6ed056ea7
commit b85d4202ce
8 changed files with 142 additions and 568 deletions

View File

@@ -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"