Re: [PATCH 1/5] deb-pkg: minor general improvements in builddebscript

From: maximilian attems
Date: Wed Apr 01 2009 - 17:38:06 EST


On Wed, 01 Apr 2009, Frans Pop wrote:

> * minor coding style improvements
> * typo fix in leading comment
> * better changelog entry
> * minor improvements in package descriptions
>
> Signed-off-by: Frans Pop <elendil@xxxxxxxxx>

ack,
beside the changelog entry, have more work done in that region ;)

> diff --git a/scripts/package/builddeb b/scripts/package/builddeb
> index 1264b8e..462ee45 100644
> --- a/scripts/package/builddeb
> +++ b/scripts/package/builddeb
> @@ -4,7 +4,7 @@
> # Copyright 2003 Wichert Akkerman <wichert@xxxxxxxxx>
> #
> # Simple script to generate a deb package for a Linux kernel. All the
> -# complexity of what to do with a kernel after it is installer or removed
> +# complexity of what to do with a kernel after it is installed or removed
> # is left to other scripts and packages: they can install scripts in the
> # /etc/kernel/{pre,post}{inst,rm}.d/ directories that will be called on
> # package install and removal.
> @@ -13,13 +13,13 @@ set -e
>
> # Some variables and settings used throughout the script
> version=$KERNELRELEASE
> -revision=`cat .version`
> +revision=$(cat .version)
> tmpdir="$objtree/debian/tmp"
> fwdir="$objtree/debian/fwtmp"
> packagename=linux-$version
> fwpackagename=linux-firmware-image
>
> -if [ "$ARCH" == "um" ] ; then
> +if [ "$ARCH" = "um" ] ; then
> packagename=user-mode-linux-$version
> fi
>
> @@ -27,12 +27,12 @@ fi
> rm -rf "$tmpdir" "$fwdir"
> mkdir -p "$tmpdir/DEBIAN" "$tmpdir/lib" "$tmpdir/boot"
> mkdir -p "$fwdir/DEBIAN" "$fwdir/lib"
> -if [ "$ARCH" == "um" ] ; then
> +if [ "$ARCH" = "um" ] ; then
>
> mkdir -p "$tmpdir/usr/lib/uml/modules/$version" "$tmpdir/usr/share/doc/$packagename" "$tmpdir/usr/bin"
> fi
>
> # Build and install the kernel
> -if [ "$ARCH" == "um" ] ; then
> +if [ "$ARCH" = "um" ] ; then
> $MAKE linux
> cp System.map "$tmpdir/usr/lib/uml/modules/$version/System.map"
> cp .config "$tmpdir/usr/share/doc/$packagename/config"
> @@ -46,7 +46,7 @@ fi
>
> if grep -q '^CONFIG_MODULES=y' .config ; then
> INSTALL_MOD_PATH="$tmpdir" make KBUILD_SRC= modules_install
> - if [ "$ARCH" == "um" ] ; then
> + if [ "$ARCH" = "um" ] ; then
> mv "$tmpdir/lib/modules/$version"/* "$tmpdir/usr/lib/uml/modules/$version/"
> rmdir "$tmpdir/lib/modules/$version"
> fi
> @@ -71,13 +71,13 @@ name="Kernel Compiler <$(id -nu)@$(hostname -f)>"
> cat <<EOF > debian/changelog
> linux ($version-$revision) unstable; urgency=low
>
> - * A standard release
> + * Custom built Linux kernel.
>
> -- $name $(date -R)
> EOF
>
> # Generate a control file
> -if [ "$ARCH" == "um" ]; then
> +if [ "$ARCH" = "um" ]; then
>
> cat <<EOF > debian/control
> Source: linux
> @@ -97,7 +97,7 @@ Description: User Mode Linux kernel, version $version
> many other things.
> .
> This package contains the Linux kernel, modules and corresponding other
> - files version $version
> + files. Version: $version.
> EOF
>
> else
> @@ -114,7 +114,7 @@ Suggests: $fwpackagename
> Architecture: any
> Description: Linux kernel, version $version
> This package contains the Linux kernel, modules and corresponding other
> - files version $version
> + files. Version: $version.
> EOF
> fi
>
> @@ -143,4 +143,3 @@ dpkg-gencontrol -isp -p$packagename
> dpkg --build "$tmpdir" ..
>
> exit 0
> -
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in
> the body of a message to majordomo@xxxxxxxxxxxxxxx
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
--
maks
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/