Skip to content
Commits on Source (2)
......@@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
#
# Copyright © 2015-2018 Mattia Rizzolo <mattia@mapreri.org>
# Copyright © 2015-2017 Holger Levsen <holger@layer-acht.org>
# Copyright © 2015-2018 Holger Levsen <holger@layer-acht.org>
# Based on reproducible_scheduler.sh © 2014-2015 Holger Levsen <holger@layer-acht.org>
# Licensed under GPL-2
#
......@@ -181,26 +181,26 @@ LIMITS = {
'amd64': {
'stretch': {1: (700, 100), 2: (1100, 85), '*': 0},
'buster': {1: (700, 1000), 2: (1100, 850), '*': 0},
'unstable': {1: (700, 1200), 2: (1100, 1050), '*': 0},
'experimental': {1: (700, 70), 2: (1100, 50), '*': 0},
'unstable': {1: (700, 0), 2: (1100, 0), '*': 0},
'experimental': {1: (700, 0), 2: (1100, 0), '*': 0},
},
'i386': {
'stretch': {1: (700, 100), 2: (1100, 85), '*': 0},
'buster': {1: (700, 1000), 2: (1100, 850), '*': 0},
'unstable': {1: (700, 1200), 2: (1100, 1050), '*': 0},
'experimental': {1: (700, 70), 2: (1100, 50), '*': 0},
'unstable': {1: (700, 0), 2: (1100, 0), '*': 0},
'experimental': {1: (700, 0), 2: (1100, 0), '*': 0},
},
'arm64': {
'stretch': {1: (700, 100), 2: (1100, 85), '*': 0},
'buster': {1: (700, 1000), 2: (1100, 850), '*': 0},
'unstable': {1: (700, 1200), 2: (1100, 1050), '*': 0},
'experimental': {1: (700, 70), 2: (1100, 50), '*': 0},
'unstable': {1: (700, 0), 2: (1100, 0), '*': 0},
'experimental': {1: (700, 0), 2: (1100, 0), '*': 0},
},
'armhf': {
'stretch': {1: (600, 80), 2: (850, 50), '*': 0},
'buster': {1: (600, 800), 2: (850, 500), '*': 0},
'unstable': {1: (600, 1000), 2: (850, 700), '*': 0},
'experimental': {1: (600, 70), 2: (850, 50), '*': 0},
'unstable': {1: (600, 0), 2: (850, 0), '*': 0},
'experimental': {1: (600, 0), 2: (850, 0), '*': 0},
}
}
}
......