39 lines
1.8 KiB
Diff
39 lines
1.8 KiB
Diff
diff --git a/src/parted/__init__.py b/src/parted/__init__.py
|
|
index ae7bc4b..eb1bb15 100644
|
|
--- a/src/parted/__init__.py
|
|
+++ b/src/parted/__init__.py
|
|
@@ -281,7 +281,8 @@ archLabels = {'i386': ['msdos', 'gpt'],
|
|
'ppc64': ['msdos', 'mac', 'amiga', 'gpt'],
|
|
'ppc64le': ['msdos', 'gpt'],
|
|
'x86_64': ['msdos', 'gpt'],
|
|
- 'aarch64': ['msdos', 'gpt']}
|
|
+ 'aarch64': ['msdos', 'gpt'],
|
|
+ 'armv7l': ['msdos', 'gpt']}
|
|
|
|
# Adapted from:
|
|
# http://stackoverflow.com/questions/922550/how-to-mark-a-global-as-deprecated-in-python
|
|
@@ -315,9 +316,9 @@ def Deprecated(mod, deprecated={}):
|
|
__archLabels = (('amiga', 'ppc(64)?$'),
|
|
('bsd', 'alpha$'),
|
|
('dasd', 's390x?$'),
|
|
- ('gpt', 'i[3-6]86$|x86_64$|ia64$|ppc(64|64le)?$|aarch64$'),
|
|
+ ('gpt', 'i[3-6]86$|x86_64$|ia64$|ppc(64|64le)?$|aarch64$|armv7l$'),
|
|
('mac', 'ppc(64)?$'),
|
|
- ('msdos', 'i[3-6]86$|x86_64$|s390x?$|alpha$|ia64$|ppc(64|64le)?$|aarch64$'),
|
|
+ ('msdos', 'i[3-6]86$|x86_64$|s390x?$|alpha$|ia64$|ppc(64|64le)?$|aarch64$|armv7l$'),
|
|
('sun', 'sparc(64)?$'))
|
|
|
|
def getLabels(arch=None):
|
|
diff --git a/tests/test_parted_parted.py b/tests/test_parted_parted.py
|
|
index b2db935..9f323e3 100755
|
|
--- a/tests/test_parted_parted.py
|
|
+++ b/tests/test_parted_parted.py
|
|
@@ -61,6 +61,7 @@ class GetLabelsTestCase(unittest.TestCase):
|
|
self.assertSetEqual(parted.getLabels('alpha'), {'bsd', 'msdos'})
|
|
self.assertSetEqual(parted.getLabels('ia64'), {'gpt', 'msdos'})
|
|
self.assertSetEqual(parted.getLabels('aarch64'), {'gpt', 'msdos'})
|
|
+ self.assertSetEqual(parted.getLabels('armv7l'), {'gpt', 'msdos'})
|
|
|
|
class GetDeviceTestCase(RequiresDeviceNode):
|
|
def runTest(self):
|