linux-openzaurus.inc: Correct the maximum zaurus kernel size (#816).
authorRichard Purdie <rpurdie@rpsys.net>
Sat, 8 Apr 2006 20:02:39 +0000 (20:02 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Sat, 8 Apr 2006 20:02:39 +0000 (20:02 +0000)
packages/linux/linux-openzaurus.inc

index cb0c529..80ccdb4 100644 (file)
@@ -99,12 +99,12 @@ do_configure() {
        yes '' | oe_runmake oldconfig
 }
 
-# Check the kernel is below the 1272*1024 byte limit for the PXA Zaurii
+# Check the kernel is below the 1264*1024 byte limit for the PXA Zaurii
 do_compile_append() {
        case ${MACHINE} in
                c7x0 | akita | poodle | spitz | tosa )
                        size=`ls -l arch/${ARCH}/boot/${KERNEL_IMAGETYPE} | awk '{ print $5}'`
-                       if [ $size -ge 1302000 ]; then  
+                       if [ $size -ge 1294336 ]; then  
                                rm arch/${ARCH}/boot/${KERNEL_IMAGETYPE}
                                echo "Size is $size"
                                die "This kernel is too big for your PXA Zaurus and will destroy data if you flash it. Please reduce the size of the kernel by making more of it modular."