~beagleboard-kernel/+junk/2.6-dev

« back to all changes in this revision

Viewing changes to build_kernel.sh

  • Committer: Robert Nelson
  • Date: 2010-03-27 14:52:06 UTC
  • Revision ID: voodoo@lvrm-20100327145206-m4qcgd6042xssx0g
tracking down a weird gcc-4.4 bug that effects squeeze, sid, karmic, lucid, etc lib/decompress_bunzip2.c:511: warning: the frame size of 1888 bytes is larger than 1024 bytes that stops boot

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
 
90
90
function make_uImage {
91
91
        cd ${DIR}/KERNEL/
92
 
        time make -j${CORES} ARCH=arm CROSS_COMPILE="${CCACHE} ${CC}" uImage
 
92
        time make -j${CORES} ARCH=arm CROSS_COMPILE="${CCACHE} ${CC}" CONFIG_DEBUG_SECTION_MISMATCH=y uImage
93
93
        KERNEL_UTS=$(cat ${DIR}/KERNEL/include/generated/utsrelease.h | awk '{print $3}' | sed 's/\"//g' )
94
94
        cp arch/arm/boot/uImage ${DIR}/deploy/${KERNEL_UTS}.uImage
95
95
        cd ${DIR}