# manualpartition.py # # Copyright 2022 axtlos # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, version 3 of the License only. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # SPDX-License-Identifier: GPL-3.0 class Partition: def __init__(self, partition, mountpoint, filesystem, size): self.partition = partition self.mountpoint = mountpoint self.filesystem = filesystem self.size = size def generate_jade_entry(self): mountpoint = "/mnt" + self.mountpoint if self.mountpoint == "none": mountpoint = "none" return mountpoint + ":/dev/" + self.partition[5:] + ":" + self.filesystem