|
@@ -87,6 +87,27 @@ case "${ARCH}" in
|
|
|
[ -f "${objtree}/vmlinux.SYS" ] && cp -v -- "${objtree}/vmlinux.SYS" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}.SYS"
|
|
|
[ -f "${objtree}/vmlinux.dsk" ] && cp -v -- "${objtree}/vmlinux.dsk" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}.dsk"
|
|
|
;;
|
|
|
+ mips)
|
|
|
+ if [ -f "${objtree}/arch/mips/boot/compressed/vmlinux.bin" ]; then
|
|
|
+ cp -v -- "${objtree}/arch/mips/boot/compressed/vmlinux.bin" "${tmpdir}/boot/vmlinuz-${KERNELRELEASE}"
|
|
|
+ elif [ -f "${objtree}/arch/mips/boot/compressed/vmlinux.ecoff" ]; then
|
|
|
+ cp -v -- "${objtree}/arch/mips/boot/compressed/vmlinux.ecoff" "${tmpdir}/boot/vmlinuz-${KERNELRELEASE}"
|
|
|
+ elif [ -f "${objtree}/arch/mips/boot/compressed/vmlinux.srec" ]; then
|
|
|
+ cp -v -- "${objtree}/arch/mips/boot/compressed/vmlinux.srec" "${tmpdir}/boot/vmlinuz-${KERNELRELEASE}"
|
|
|
+ elif [ -f "${objtree}/vmlinux.32" ]; then
|
|
|
+ cp -v -- "${objtree}/vmlinux.32" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}"
|
|
|
+ elif [ -f "${objtree}/vmlinux.64" ]; then
|
|
|
+ cp -v -- "${objtree}/vmlinux.64" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}"
|
|
|
+ elif [ -f "${objtree}/arch/mips/boot/vmlinux.bin" ]; then
|
|
|
+ cp -v -- "${objtree}/arch/mips/boot/vmlinux.bin" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}"
|
|
|
+ elif [ -f "${objtree}/arch/mips/boot/vmlinux.ecoff" ]; then
|
|
|
+ cp -v -- "${objtree}/arch/mips/boot/vmlinux.ecoff" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}"
|
|
|
+ elif [ -f "${objtree}/arch/mips/boot/vmlinux.srec" ]; then
|
|
|
+ cp -v -- "${objtree}/arch/mips/boot/vmlinux.srec" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}"
|
|
|
+ elif [ -f "${objtree}/vmlinux" ]; then
|
|
|
+ cp -v -- "${objtree}/vmlinux" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}"
|
|
|
+ fi
|
|
|
+ ;;
|
|
|
*)
|
|
|
[ -f "${KBUILD_IMAGE}" ] && cp -v -- "${KBUILD_IMAGE}" "${tmpdir}/boot/vmlinux-kbuild-${KERNELRELEASE}"
|
|
|
echo "" >&2
|