jenkins: fixed bad subtitution in bootloader build and archive
BugzID: 72761 Signed-off-by: Marc Mattmueller <marc.mattmueller@netmodule.com>
This commit is contained in:
parent
7a132670d1
commit
0aed4eb233
|
|
@ -205,10 +205,10 @@ def buildAndArchive() {
|
|||
else if (params.IMAGE_TYPE == 'bootloader') {
|
||||
sh "bash -c '. ./env.common && bitbake virtual/bootloader'"
|
||||
dir ('tmp/build-output') {
|
||||
sh 'cp ${build_deploy}/*u-boot-${params.MACHINE}*.img . || true'
|
||||
sh 'cp ${build_deploy}/*u-boot-${params.MACHINE}*.xmodem.bin . || true'
|
||||
sh 'cp ${build_deploy}/imx-boot . || true'
|
||||
sh 'cp ${build_deploy}/imx-boot.sd . || true'
|
||||
sh "cp ${build_deploy}/*u-boot-${params.MACHINE}*.img . || true"
|
||||
sh "cp ${build_deploy}/*u-boot-${params.MACHINE}*.xmodem.bin . || true"
|
||||
sh "cp ${build_deploy}/imx-boot . || true"
|
||||
sh "cp ${build_deploy}/imx-boot.sd . || true"
|
||||
}
|
||||
}
|
||||
else if (params.IMAGE_TYPE == 'vcu') {
|
||||
|
|
|
|||
Loading…
Reference in New Issue