diff options
author | Elizabeth Liner <eliner@us.ibm.com> | 2016-04-04 13:32:15 -0500 |
---|---|---|
committer | William G. Hoffa <wghoffa@us.ibm.com> | 2016-04-05 17:00:43 -0400 |
commit | 2c5fa35d299cf3724a662c2b8e25ac945ca4ac41 (patch) | |
tree | 1a3b0239a8f8224809c08eb03e212e5457b8bb94 /src/build | |
parent | e8fdc1c11a1ee3c9406b75ebb45b619371e60182 (diff) | |
download | talos-hostboot-2c5fa35d299cf3724a662c2b8e25ac945ca4ac41.tar.gz talos-hostboot-2c5fa35d299cf3724a662c2b8e25ac945ca4ac41.zip |
Fixing the bootloader file add. Previously missing a space for syntax.
Change-Id: I87395fd526bbe1748a69c58a1adceb51bb409fef
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/22876
Reviewed-by: Martin Gloff <mgloff@us.ibm.com>
Tested-by: Jenkins Server
Tested-by: FSP CI Jenkins
Reviewed-by: Jay M. Azurin <jmazurin@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Diffstat (limited to 'src/build')
-rwxr-xr-x | src/build/tools/hbRelease | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/build/tools/hbRelease b/src/build/tools/hbRelease index 8b80d6758..08295b69c 100755 --- a/src/build/tools/hbRelease +++ b/src/build/tools/hbRelease @@ -52,7 +52,7 @@ my $CMVC_FILES = "src/hbfw/img/hostboot.bin ". "src/hbfw/fsp.tar ". "src/hbfw/makefile ". "src/hbfw/releaseNotes.html ". - "src/hbfw/simics.tar"; + "src/hbfw/simics.tar "; # Directory to look up latest release tag for a specific release my $HOSTBOOT_GSA_HOME = "/gsa/ausgsa/home/h/o/hostboot"; my $LATEST_BUILD_DIR = "$HOSTBOOT_GSA_HOME/auto-hb-release/latest-builds"; @@ -423,7 +423,7 @@ sub execute_pre_release if($release =~ m/fips9/) { - $CMVC_FILES .= "src/hbfw/img/hostboot_bootloader.bin"; + $CMVC_FILES .= "src/hbfw/img/hostboot_bootloader.bin "; } # CMVC open feature |