Extend filesystem as instructed for piCorePlayer. [Main page, Resize FS]
SSH into the pCP/RPI ssh tc@192.168.1.95 (with the right ip number ofcause) or with Putty
Default password is: piCore
import xml.etree.ElementTree as ET | |
import sys | |
import yaml | |
fname = sys.argv[1] | |
shortname = fname.rsplit('/')[-1].split('.')[0] | |
tree = ET.parse(fname) | |
root = tree.getroot() |