filesystem: drop __main__ from filesystem.py

The __main__ function in filesystem.py seems to be some experimental
testcode from the very beginning of pySim-shell. Lets drop it.

Change-Id: I34f459469dfc45711ad0928c83184d7f99e0f5e3
Related: OS#4963
This commit is contained in:
Philipp Maier 2021-03-10 21:56:47 +01:00
parent 660615800c
commit d51d8b5575
1 changed files with 0 additions and 18 deletions

View File

@ -717,21 +717,3 @@ class CardProfile(object):
"""Interpret a given status word within the profile. Returns tuple of
two strings"""
return interpret_sw(self.sw, sw)
######################################################################
if __name__ == '__main__':
mf = CardMF()
adf_usim = ADF('a0000000871002', name='ADF_USIM')
mf.add_application(adf_usim)
df_pb = CardDF('5f3a', name='DF.PHONEBOOK')
adf_usim.add_file(df_pb)
adf_usim.add_file(TransparentEF('6f05', name='EF.LI', size={2,16}))
adf_usim.add_file(TransparentEF('6f07', name='EF.IMSI', size={9,9}))
rss = RuntimeState(mf, None)
interp = code.InteractiveConsole(locals={'mf':mf, 'rss':rss})
interp.interact()