From e5889dbde9d009145dd76ff7abf8f24c81bd5f64 Mon Sep 17 00:00:00 2001 From: Andy Green Date: Wed, 19 Nov 2008 17:11:15 +0000 Subject: add-build-script-name-based-on-64xx-or-24xx-config.patch Signed-off-by: Andy Green --- build | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'build') diff --git a/build b/build index d0155ec9750..694913d2c8c 100755 --- a/build +++ b/build @@ -1,6 +1,6 @@ #!/bin/sh -set -x +# set -x export CROSS_COMPILE=../../cross/bin/arm-angstrom-linux-gnueabi- make ARCH=arm silentoldconfig @@ -11,9 +11,21 @@ if [ -d .git ] ; then VERSION=-$BRANCH\_$HEAD fi +if [ ! -z "`grep CONFIG_ARCH_S3C64XX=y .config`" ] ; then + START=50008000 + PRODUCT=GTA03 +fi + +if [ ! -z "`grep CONFIG_ARCH_S3C2410=y .config`" ] ; then + START=50008000 + PRODUCT=FR +fi + +echo $MKIMAGECMD + if make -j5 ARCH=arm CONFIG_DEBUG_SECTION_MISMATCH=y EXTRAVERSION=$VERSION; then ${CROSS_COMPILE}objcopy -O binary -R .note -R .comment -S arch/arm/boot/compressed/vmlinux linux.bin - mkimage -A arm -O linux -T kernel -C none -a 30008000 -e 30008000 -n "Openmoko Freerunner Kernel" -d linux.bin uImage.bin + mkimage -A arm -O linux -T kernel -C none -a $START -e $START -n "OM $PRODUCT $BRANCH""_$HEAD" -d linux.bin uImage.bin # we can see if it is an "moredrivers" build by looking for USB Eth gadget # if it is then keep a stamped copy of last build -- cgit v1.2.3