summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2013-04-03 23:43:13 -0700
committerAndras Timar <atimar@suse.com>2013-04-03 23:44:04 -0700
commitf5c25c54d38e06e8fb5f36be043b9316da036bf9 (patch)
tree23394fe161f19e214dcda38fc3aa2478a6cd48cd
parent6b8e311ddc633bb13053d13c5d0f29240039846b (diff)
For Intel AppUp build hide the links in start center
Change-Id: I74e6757741ba9d8c8c494018e4bf3e4f638aa3f6
-rw-r--r--solenv/bin/modules/installer/ziplist.pm11
1 files changed, 11 insertions, 0 deletions
diff --git a/solenv/bin/modules/installer/ziplist.pm b/solenv/bin/modules/installer/ziplist.pm
index c052e722f8bb..66c06888466d 100644
--- a/solenv/bin/modules/installer/ziplist.pm
+++ b/solenv/bin/modules/installer/ziplist.pm
@@ -104,6 +104,7 @@ sub read_ziplist {
set_default_productversion_if_required($allvariableshashref);
add_variables_to_allvariableshashref($allvariableshashref);
overwrite_branding( $allvariableshashref );
+ startcenter_links_hide_or_not( $allvariableshashref );
return $allsettingsarrayref, $allvariableshashref;
}
@@ -833,6 +834,16 @@ sub overwrite_branding
}
###########################################################
+# For Intel AppUp build hide the links in start center
+###########################################################
+sub startcenter_links_hide_or_not
+{
+ my ($variableshashref) = @_;
+ $variableshashref->{'STARTCENTER_HIDE_EXTERNAL_LINKS'} = "1" , if( defined $ENV{'ENABLE_SILENT_MSI'} && $ENV{'ENABLE_SILENT_MSI'} eq "TRUE" );
+}
+
+
+###########################################################
# Adding the lowercase variables into the variableshashref
###########################################################