Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / scripts / package / buildtar
blob28574ae551703157d6cea9e525c6cf43edb85da8
1 #!/bin/sh
4 # buildtar 0.0.4
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>.
13 set -e
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
25 case "${1}" in
26 tar-pkg)
27 compress="cat"
28 file_ext=""
30 targz-pkg)
31 compress="gzip -c9"
32 file_ext=".gz"
34 tarbz2-pkg)
35 compress="bzip2 -c9"
36 file_ext=".bz2"
39 echo "Unknown tarball target \"${1}\" requested, please add it to ${0}." >&2
40 exit 1
42 esac
46 # Clean-up and re-create the temporary directory
48 rm -rf -- "${tmpdir}"
49 mkdir -p -- "${tmpdir}/boot"
53 # Try to install modules
55 if grep -q '^CONFIG_MODULES=y' "${objtree}/.config"; then
56 make ARCH="${ARCH}" O="${objtree}" KBUILD_SRC= INSTALL_MOD_PATH="${tmpdir}" modules_install
61 # Install basic kernel files
63 cp -v -- "${objtree}/System.map" "${tmpdir}/boot/System.map-${KERNELRELEASE}"
64 cp -v -- "${objtree}/.config" "${tmpdir}/boot/config-${KERNELRELEASE}"
65 cp -v -- "${objtree}/vmlinux" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}"
69 # Install arch-specific kernel image(s)
71 case "${ARCH}" in
72 x86|i386|x86_64)
73 [ -f "${objtree}/arch/x86/boot/bzImage" ] && cp -v -- "${objtree}/arch/x86/boot/bzImage" "${tmpdir}/boot/vmlinuz-${KERNELRELEASE}"
75 alpha)
76 [ -f "${objtree}/arch/alpha/boot/vmlinux.gz" ] && cp -v -- "${objtree}/arch/alpha/boot/vmlinux.gz" "${tmpdir}/boot/vmlinuz-${KERNELRELEASE}"
78 vax)
79 [ -f "${objtree}/vmlinux.SYS" ] && cp -v -- "${objtree}/vmlinux.SYS" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}.SYS"
80 [ -f "${objtree}/vmlinux.dsk" ] && cp -v -- "${objtree}/vmlinux.dsk" "${tmpdir}/boot/vmlinux-${KERNELRELEASE}.dsk"
83 [ -f "${KBUILD_IMAGE}" ] && cp -v -- "${KBUILD_IMAGE}" "${tmpdir}/boot/vmlinux-kbuild-${KERNELRELEASE}"
84 echo "" >&2
85 echo '** ** ** WARNING ** ** **' >&2
86 echo "" >&2
87 echo "Your architecture did not define any architecture-dependant files" >&2
88 echo "to be placed into the tarball. Please add those to ${0} ..." >&2
89 echo "" >&2
90 sleep 5
92 esac
96 # Create the tarball
99 cd "${tmpdir}"
100 tar cf - . | ${compress} > "${tarball}${file_ext}"
103 echo "Tarball successfully created in ${tarball}${file_ext}"
105 exit 0