You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
2 years ago
|
# manualpartition.py
|
||
|
#
|
||
|
# Copyright 2022 axtlos <axtlos@getcryst.al>
|
||
|
#
|
||
|
# 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 <http://www.gnu.org/licenses/>.
|
||
|
#
|
||
|
# 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
|