diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/confmk.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/confmk.py b/scripts/confmk.py index ef27543..a508d39 100755 --- a/scripts/confmk.py +++ b/scripts/confmk.py @@ -12,6 +12,9 @@ def gen_confmk(): with open(conf.dot_confmk, 'w') as f: f.write("# This file is generated. Please don't edit this file.\n") f.write("SRCARCH := " + conf.SRCARCH + "\n") + f.write("\n") + f.write("BUILDROOT_INITRAM := " + conf.buildroot_initram + "\n") + f.write("INITRAM := " + conf.initram + "\n") ################################################################################# |