standard_build/copy.sh

18 lines
437 B
Bash
Raw Permalink Normal View History

2024-11-08 14:50:39 +08:00
#!/bin/bash
source ./package.config
echo "cp images/${UIMAGE_NAME} /tftpboot/"
cp images/${UIMAGE_NAME} /tftpboot/
echo "cp images/Image /tftpboot/"
cp images/Image /tftpboot/
#cp images/linux-*.gz /tftpboot/
if [ -e "images/initrd.img" ] ; then
echo "cp images/initrd.img /tftpboot/"
cp images/initrd.img /tftpboot/
fi
echo "cp images/system-top.dtb /tftpboot/${DTB_TARGET}"
cp images/system-top.dtb /tftpboot/${DTB_TARGET}