standard_build/copy.sh
2024-11-08 14:50:39 +08:00

18 lines
437 B
Bash
Executable File

#!/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}