diff options
Diffstat (limited to 'bitbake/lib/toaster/toastermain/settings.py')
-rw-r--r-- | bitbake/lib/toaster/toastermain/settings.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/toastermain/settings.py b/bitbake/lib/toaster/toastermain/settings.py index b149a5ed83..6439d68c3f 100644 --- a/bitbake/lib/toaster/toastermain/settings.py +++ b/bitbake/lib/toaster/toastermain/settings.py | |||
@@ -23,6 +23,11 @@ | |||
23 | 23 | ||
24 | import os, re | 24 | import os, re |
25 | 25 | ||
26 | # Temporary toggle for Image customisation | ||
27 | CUSTOM_IMAGE = False | ||
28 | if os.environ.get("CUSTOM_IMAGE", None) is not None: | ||
29 | CUSTOM_IMAGE = True | ||
30 | |||
26 | DEBUG = True | 31 | DEBUG = True |
27 | TEMPLATE_DEBUG = DEBUG | 32 | TEMPLATE_DEBUG = DEBUG |
28 | 33 | ||