launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #12115
[Merge] lp:~racb/maas/add-arm-enums into lp:maas
Robie Basak has proposed merging lp:~racb/maas/add-arm-enums into lp:maas.
Requested reviews:
MAAS Maintainers (maas-maintainers)
For more details, see:
https://code.launchpad.net/~racb/maas/add-arm-enums/+merge/124883
--
https://code.launchpad.net/~racb/maas/add-arm-enums/+merge/124883
Your team MAAS Maintainers is requested to review the proposed merge of lp:~racb/maas/add-arm-enums into lp:maas.
=== modified file 'src/maasserver/enum.py'
--- src/maasserver/enum.py 2012-09-12 15:37:13 +0000
+++ src/maasserver/enum.py 2012-09-18 10:51:21 +0000
@@ -107,12 +107,15 @@
i386 = 'i386'
#:
amd64 = 'amd64'
+ #:
+ armhf = 'armhf'
# Architecture names.
ARCHITECTURE_CHOICES = (
(ARCHITECTURE.i386, "i386"),
(ARCHITECTURE.amd64, "amd64"),
+ (ARCHITECTURE.armhf, "armhf"),
)