Add server confirm activation modal

Added text specific to server images that appears in the
activation modal when a "server" image is activated.
The "server" and "BMC" images use the same modal, but the text
and if radio buttons appear differ.

Resolves openbmc/openbmc#2967

Tested: Activated both a server and BMC image on a Witherspoon.
Change-Id: I83693641ebfef802d403141ade55a950f359ba6e
Signed-off-by: Gunnar Mills <gmills@us.ibm.com>
diff --git a/app/common/directives/firmware-list.js b/app/common/directives/firmware-list.js
index a4cc58f..4cdf6d7 100644
--- a/app/common/directives/firmware-list.js
+++ b/app/common/directives/firmware-list.js
@@ -15,8 +15,8 @@
                 },
                 'controller': ['$rootScope', '$scope','dataService', '$location', '$timeout', function($rootScope, $scope, dataService, $location, $timeout){
                     $scope.dataService = dataService;
-                    $scope.activate = function(imageId, imageVersion){
-                        $scope.$parent.activateImage(imageId, imageVersion);
+                    $scope.activate = function(imageId, imageVersion, imageType){
+                        $scope.$parent.activateImage(imageId, imageVersion, imageType);
                     }
 
                     $scope.delete = function(imageId, imageVersion){