summaryrefslogtreecommitdiff
path: root/src/python/m5/objects/DiskImage.py
blob: 0d55e9329893f2f4867abee8b9d3fcc232b138f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from m5 import *
class DiskImage(SimObject):
    type = 'DiskImage'
    abstract = True
    image_file = Param.String("disk image file")
    read_only = Param.Bool(False, "read only image")

class RawDiskImage(DiskImage):
    type = 'RawDiskImage'

class CowDiskImage(DiskImage):
    type = 'CowDiskImage'
    child = Param.DiskImage("child image")
    table_size = Param.Int(65536, "initial table size")
    image_file = ''