summaryrefslogtreecommitdiff
path: root/util/cpt_upgraders/ide-dma-abort.py
blob: 773e3dbe0a0d1a6d774615e0f471b583aa283abe (plain)
1
2
3
4
5
6
7
8
# Update IDE disk devices with dmaAborted flag
def upgrader(cpt):
    for sec in cpt.sections():
        # curSector only exists in IDE devices, so key on that attribute
        if cpt.has_option(sec, "curSector"):
            cpt.set(sec, "dmaAborted", "false")

legacy_version = 7