blob: 3be56d7cb769b856ce047e1fe982de0eb15592db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import sh
def flash_memory(imagepath):
print("Start programming Nand memory...")
p = sh.bash("/usr/bin/igep-flash", "--skip-nandtest", "--image", imagepath)
if p.exit_code != 0:
print("Flasher: Could not complete flashing task.")
return 1
else:
print("Flasher: NAND memory flashed succesfully.")
return 0
|