X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fconst.py;h=697cd4637c0db2cb44b3d500e5f14203ca5d69c9;hb=def6aae983809db1773578b4dbaeb61ec06c9690;hp=4b2a3fccb10ea82f50d69482d57ce454f3ce8b37;hpb=019ad4b6e3fca2cbe5e739c94385aadd8dd16bfa;p=bertos.git diff --git a/wizard/const.py b/wizard/const.py index 4b2a3fcc..697cd463 100644 --- a/wizard/const.py +++ b/wizard/const.py @@ -33,6 +33,14 @@ # Author: Lorenzo Berni # +import os, sys + +_tmp = sys.argv[0] +if os.path.islink(_tmp): + _tmp = os.readlink(_tmp) +DATA_DIR = os.path.dirname(os.path.abspath(_tmp)) +del _tmp + CPU_DEF = { "CPU_NAME": "", "CPU_DIR": "", @@ -65,6 +73,8 @@ EXTENSION_FILTER = ( ".cxx", ".h", ".c++", + ".ld", + ".S", ".mk", "Makefile", ) @@ -83,3 +93,5 @@ MODULE_DEFINITION = { "module_hw": "module_hw", "module_supports": "module_supports", } + +MK_PARAM_ID = "MK_"