diff --git a/src/modules/partition/core/PartitionCoreModule.cpp b/src/modules/partition/core/PartitionCoreModule.cpp index 9b7e21b00..23736d527 100644 --- a/src/modules/partition/core/PartitionCoreModule.cpp +++ b/src/modules/partition/core/PartitionCoreModule.cpp @@ -435,6 +435,7 @@ PartitionCoreModule::createSummaryInfo() const continue; SummaryInfo summaryInfo; summaryInfo.deviceName = deviceInfo->device->name(); + summaryInfo.deviceNode = deviceInfo->device->deviceNode(); Device* deviceBefore = backend->scanDevice( deviceInfo->device->deviceNode() ); summaryInfo.partitionModelBefore = new PartitionModel; diff --git a/src/modules/partition/core/PartitionCoreModule.h b/src/modules/partition/core/PartitionCoreModule.h index 67e446add..678984813 100644 --- a/src/modules/partition/core/PartitionCoreModule.h +++ b/src/modules/partition/core/PartitionCoreModule.h @@ -1,7 +1,7 @@ /* === This file is part of Calamares - === * * Copyright 2014, Aurélien Gâteau - * Copyright 2014, Teo Mrnjavac + * Copyright 2014-2015, Teo Mrnjavac * * Calamares is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -53,6 +53,7 @@ public: struct SummaryInfo { QString deviceName; + QString deviceNode; PartitionModel* partitionModelBefore; PartitionModel* partitionModelAfter; };