Start RAM code for updater

This commit is contained in:
2020-12-07 21:39:07 +01:00
parent c67298118e
commit a3e652ddb8
8 changed files with 470 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
#!env python
import os
import sys
if len(sys.argv) < 3:
sys.exit(-1)
source_file = sys.argv[2]
dest_file = sys.argv[1]
print("%s --> %s" % (source_file, dest_file))
with open(dest_file, "w") as f:
f.write("AAA")
sys.exit(0)