summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--util/nvmutil/nvmutil.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/util/nvmutil/nvmutil.c b/util/nvmutil/nvmutil.c
index b80616ae..9a70634e 100644
--- a/util/nvmutil/nvmutil.c
+++ b/util/nvmutil/nvmutil.c
@@ -379,16 +379,14 @@ cmd_swap(void)
void
cmd_copy(void)
{
- int src = (part << 12);
-
- int destPart = (part ^ 1);
- int dest = (destPart << 12);
-
if (validChecksum(part)) {
- memcpy((gbe + dest), (gbe + src), SIZE_4KB);
+ if (part)
+ gbe = gbe2;
+ else
+ gbe2 = gbe;
gbeFileModified = 1;
- nvmPartModified[destPart] = 1;
+ nvmPartModified[part ^ 1] = 1;
}
}