52403a5ddf
get rid of the alias for true to True and false to False to keep consistent python syntax. util/stats/info.py: Fix typo --HG-- extra : convert_revision : e69588a8de52424e043315e70008ca3a3ede7d5b
14 lines
411 B
Text
14 lines
411 B
Text
simobj DiskImage(SimObject):
|
|
type = 'DiskImage'
|
|
abstract = True
|
|
image_file = Param.String("disk image file")
|
|
read_only = Param.Bool(False, "read only image")
|
|
|
|
simobj RawDiskImage(DiskImage):
|
|
type = 'RawDiskImage'
|
|
|
|
simobj CowDiskImage(DiskImage):
|
|
type = 'CowDiskImage'
|
|
child = Param.DiskImage("child image")
|
|
table_size = Param.Int(65536, "initial table size")
|
|
image_file = ''
|