diff options
author | Thomas Kunze <thommycheck@gmx.de> | 2008-08-12 21:47:57 +0000 |
---|---|---|
committer | Thomas Kunze <thommycheck@gmx.de> | 2008-08-12 21:47:57 +0000 |
commit | 1bd84e0b4a622aa91157b5cf19173126a608253c (patch) | |
tree | f9af4cc1e7bd9d23946a1a15e9ccbfe97800611a /classes/kernel.bbclass | |
parent | 036620b7a92514cde4dc00d017fc22313a555617 (diff) |
kernel.bbclass: fix typo in do_sizecheck()
Diffstat (limited to 'classes/kernel.bbclass')
-rw-r--r-- | classes/kernel.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/kernel.bbclass b/classes/kernel.bbclass index 50fbbfb663..2a335af0b6 100644 --- a/classes/kernel.bbclass +++ b/classes/kernel.bbclass @@ -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} |