kernel.bbclass: fix typo in do_sizecheck()
authorThomas Kunze <thommycheck@gmx.de>
Tue, 12 Aug 2008 21:47:57 +0000 (21:47 +0000)
committerThomas Kunze <thommycheck@gmx.de>
Tue, 12 Aug 2008 21:47:57 +0000 (21:47 +0000)
classes/kernel.bbclass

index 50fbbfb..2a335af 100644 (file)
@@ -450,7 +450,7 @@ python populate_packages_prepend () {
 # Support checking the kernel size since some kernels need to reside in partitions
 # with a fixed length or there is a limit in transferring the kernel to memory
 do_sizecheck() {
-       if [ ! -z "${KERNEL_IMAGE_MAXSIZE}" -a -z "${DONT_CHECK_KERNELSIZE}"]; then
+       if [ ! -z "${KERNEL_IMAGE_MAXSIZE}" -a -z "${DONT_CHECK_KERNELSIZE}" ]; then
                size=`ls -l ${KERNEL_OUTPUT} | awk '{ print $5}'`
                if [ $size -ge ${KERNEL_IMAGE_MAXSIZE} ]; then
                        rm ${KERNEL_OUTPUT}