18 lines
437 B
Bash
Executable File
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}
|