6 # (C) 2004-2006 by Jan-Benedict Glaw <jbglaw@lug-owl.de>
8 # This script is used to compile a tarball from the currently
9 # prepared kernel. Based upon the builddeb script from
10 # Wichert Akkerman <wichert@wiggy.net>.
16 # Some variables and settings used throughout the script
18 tmpdir="${objtree}/tar-install"
19 tarball="${objtree}/linux-${KERNELRELEASE}.tar"
23 # Figure out how to compress, if requested at all
43 echo "Unknown tarball target \"${1}\" requested, please add it to ${0}." >&2
50 # Clean-up and re-create the temporary directory
53 mkdir -p -- "${tmpdir}/boot"
57 # Try to install modules
59 if grep -q '^CONFIG_MODULES=y' "${objtree}/.config"; then
60 make ARCH="${ARCH}" O="${objtree}" KBUILD_SRC= INSTALL_MOD_PATH="${tmpdir}" modules_install
65 # Install basic kernel files
67 cp -v -- "${objtree}/System.map" "${tmpdir}/boot/System.map-${KERNELRELEASE}"
68 cp -v -- "${objtree}/.config" "${tmpdir}/boot/config-${KERNELRELEASE}"
69 cp -v -- "${objtree}/vmlinux" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}"
73 # Install arch-specific kernel image(s)
77 [ -f "${objtree}/arch/x86/boot/bzImage" ] && cp -v -- "${objtree}/arch/x86/boot/bzImage" "${tmpdir}/boot/vmlinuz-${KERNELRELEASE}"
80 [ -f "${objtree}/arch/alpha/boot/vmlinux.gz" ] && cp -v -- "${objtree}/arch/alpha/boot/vmlinux.gz" "${tmpdir}/boot/vmlinuz-${KERNELRELEASE}"
83 [ -f "${KBUILD_IMAGE}" ] && cp -v -- "${KBUILD_IMAGE}" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}"
84 [ -f "${objtree}/lifimage" ] && cp -v -- "${objtree}/lifimage" "${tmpdir}/boot/lifimage-${KERNELRELEASE}"
87 [ -f "${objtree}/vmlinux.SYS" ] && cp -v -- "${objtree}/vmlinux.SYS" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}.SYS"
88 [ -f "${objtree}/vmlinux.dsk" ] && cp -v -- "${objtree}/vmlinux.dsk" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}.dsk"
91 [ -f "${KBUILD_IMAGE}" ] && cp -v -- "${KBUILD_IMAGE}" "${tmpdir}/boot/vmlinux-kbuild-${KERNELRELEASE}"
93 echo '** ** ** WARNING ** ** **' >&2
95 echo "Your architecture did not define any architecture-dependent files" >&2
96 echo "to be placed into the tarball. Please add those to ${0} ..." >&2
109 if tar --owner=root --group=root --help >/dev/null 2>&1; then
110 opts="--owner=root --group=root"
112 tar cf - . $opts | ${compress} > "${tarball}${file_ext}"
115 echo "Tarball successfully created in ${tarball}${file_ext}"