Sign in
gem5
/
public
/
gem5
/
87cf5a99ee686dc947cf21d08b2655d3b70437ee
/
.
/
util
/
cpt_upgraders
/
ide-dma-abort.py
blob: 773e3dbe0a0d1a6d774615e0f471b583aa283abe [
file
] [
log
] [
blame
]
# 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