u-boot-armada: Deploy u-boot-spl.kwb file
This is the name used for the wic file creation. BugzID: 74357
This commit is contained in:
parent
139bb581ba
commit
a9ac74dac7
|
|
@ -15,8 +15,14 @@ UBOOT_SUFFIX = "kwb"
|
||||||
UBOOT_BINARY = "u-boot-spl.${UBOOT_SUFFIX}"
|
UBOOT_BINARY = "u-boot-spl.${UBOOT_SUFFIX}"
|
||||||
|
|
||||||
do_deploy() {
|
do_deploy() {
|
||||||
|
# xmodem files
|
||||||
cp ${S}/spl/u-boot-spl.bin ${DEPLOYDIR}/spl-u-boot-${MACHINE}.xmodem.bin
|
cp ${S}/spl/u-boot-spl.bin ${DEPLOYDIR}/spl-u-boot-${MACHINE}.xmodem.bin
|
||||||
cp ${S}/u-boot.bin ${DEPLOYDIR}/u-boot-${MACHINE}.xmodem.bin
|
cp ${S}/u-boot.bin ${DEPLOYDIR}/u-boot-${MACHINE}.xmodem.bin
|
||||||
|
|
||||||
|
# file for wic file
|
||||||
|
cp ${S}/${UBOOT_BINARY} ${DEPLOYDIR}/u-boot-spl.${UBOOT_SUFFIX}
|
||||||
|
|
||||||
|
# file for user usage
|
||||||
cp ${S}/${UBOOT_BINARY} ${DEPLOYDIR}/u-boot-${MACHINE}.${UBOOT_SUFFIX}
|
cp ${S}/${UBOOT_BINARY} ${DEPLOYDIR}/u-boot-${MACHINE}.${UBOOT_SUFFIX}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue