summaryrefslogtreecommitdiff
path: root/util/intelp2m/config/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'util/intelp2m/config/config.go')
-rw-r--r--util/intelp2m/config/config.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/util/intelp2m/config/config.go b/util/intelp2m/config/config.go
index 4d2a700c54..7b491b1eb3 100644
--- a/util/intelp2m/config/config.go
+++ b/util/intelp2m/config/config.go
@@ -28,7 +28,8 @@ const (
LewisburgType uint8 = 1
ApolloType uint8 = 2
CannonType uint8 = 3
- AlderType uint8 = 4
+ AlderType uint8 = 4
+ JasperType uint8 = 5
)
var key uint8 = SunriseType
@@ -38,7 +39,9 @@ var platform = map[string]uint8{
"lbg": LewisburgType,
"apl": ApolloType,
"cnl": CannonType,
- "adl": AlderType}
+ "adl": AlderType,
+ "jsl": JasperType,
+}
func PlatformSet(name string) int {
if platformType, valid := platform[name]; valid {
key = platformType