diff options
author | Philip Balister <philip@balister.org> | 2008-08-12 23:43:44 +0000 |
---|---|---|
committer | Philip Balister <philip@balister.org> | 2008-08-12 23:43:44 +0000 |
commit | 8556f25202ad225bc643e1f4c0abd3ced33e578b (patch) | |
tree | a554ea478c1ffb7e42c200c04aedaa4512d46a44 | |
parent | 6ab3c066f223574bab801aced8327b7a9a1c1130 (diff) | |
parent | 1bd84e0b4a622aa91157b5cf19173126a608253c (diff) |
merge of '2a6a15e0a08e8a808d409d6dcd8af1d5db6de4cd'
and 'e50fc707da1372d68e46edaf3a6915bf53f628b9'
-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} |