Kernel build issues after yesterdays merge by Linus

David Laight David.Laight at ACULAB.COM
Thu Jun 12 22:36:10 EST 2014


From: Anton Blanchard
...
> diff --git a/arch/powerpc/boot/install.sh b/arch/powerpc/boot/install.sh
> index b6a256b..e096e5a 100644
> --- a/arch/powerpc/boot/install.sh
> +++ b/arch/powerpc/boot/install.sh
> @@ -23,8 +23,8 @@ set -e
> 
>  # User may have a custom install script
> 
> -if [ -x ~/bin/${INSTALLKERNEL} ]; then exec ~/bin/${INSTALLKERNEL} "$@"; fi
> -if [ -x /sbin/${INSTALLKERNEL} ]; then exec /sbin/${INSTALLKERNEL} "$@"; fi
> +if [ -x ~/bin/${INSTALLKERNEL} ]; then exec ~/bin/${INSTALLKERNEL} $1 $2 $3 $4; fi
> +if [ -x /sbin/${INSTALLKERNEL} ]; then exec /sbin/${INSTALLKERNEL} $1 $2 $3 $4; fi

You probably want to enclose the $1 in " as:

> +if [ -x /sbin/${INSTALLKERNEL} ]; then exec /sbin/${INSTALLKERNEL} "$1" "$2" "$3" "$4"; fi

	David



More information about the Linuxppc-dev mailing list