X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fconst.py;h=3b6add0de74d5c77592669bc6e55c27a4d5911bf;hb=491b455b50274fff7316cf1b0396161dd59decea;hp=4b2a3fccb10ea82f50d69482d57ce454f3ce8b37;hpb=019ad4b6e3fca2cbe5e739c94385aadd8dd16bfa;p=bertos.git diff --git a/wizard/const.py b/wizard/const.py index 4b2a3fcc..3b6add0d 100644 --- a/wizard/const.py +++ b/wizard/const.py @@ -33,6 +33,16 @@ # 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 + +PREDEFINED_BOARDS_DIR = 'predefined_boards' + CPU_DEF = { "CPU_NAME": "", "CPU_DIR": "", @@ -65,6 +75,8 @@ EXTENSION_FILTER = ( ".cxx", ".h", ".c++", + ".ld", + ".S", ".mk", "Makefile", ) @@ -83,3 +95,5 @@ MODULE_DEFINITION = { "module_hw": "module_hw", "module_supports": "module_supports", } + +MK_PARAM_ID = "MK_"