diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-03-14 15:52:42 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-03-14 15:52:42 +0000 |
commit | 16defbb2bd9478f9e5384b9722f20a694e6bae41 (patch) | |
tree | f52e202c30c7fca103b196ece1223e18446e4dfc /target/linux/s3c24xx/patches-2.6.24/1256-add-buildkeep-hash-named-copy.patch.patch | |
parent | b4644aedce6526b5d07b336187c8e6417c7dd75e (diff) | |
download | upstream-16defbb2bd9478f9e5384b9722f20a694e6bae41.tar.gz upstream-16defbb2bd9478f9e5384b9722f20a694e6bae41.tar.bz2 upstream-16defbb2bd9478f9e5384b9722f20a694e6bae41.zip |
nuke obsolete kernel stuff
SVN-Revision: 14875
Diffstat (limited to 'target/linux/s3c24xx/patches-2.6.24/1256-add-buildkeep-hash-named-copy.patch.patch')
-rw-r--r-- | target/linux/s3c24xx/patches-2.6.24/1256-add-buildkeep-hash-named-copy.patch.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/target/linux/s3c24xx/patches-2.6.24/1256-add-buildkeep-hash-named-copy.patch.patch b/target/linux/s3c24xx/patches-2.6.24/1256-add-buildkeep-hash-named-copy.patch.patch deleted file mode 100644 index 94e20cbde2..0000000000 --- a/target/linux/s3c24xx/patches-2.6.24/1256-add-buildkeep-hash-named-copy.patch.patch +++ /dev/null @@ -1,37 +0,0 @@ -From b79f79448a70b5718db2428939e00150315b5eda Mon Sep 17 00:00:00 2001 -From: Andy Green <andy@openmoko.com> -Date: Wed, 6 Aug 2008 20:46:42 +0100 -Subject: [PATCH] add-buildkeep-hash-named-copy.patch - -Keep a copy of last "moredrivers" config kernel built stamped with -branch and git head at build time. - -Signed-off-by: Andy Green <andy@openmoko.com> ---- - build | 10 +++++++++- - 1 files changed, 9 insertions(+), 1 deletions(-) - -diff --git a/build b/build -index 9c2d561..63bb0fc 100755 ---- a/build -+++ b/build -@@ -15,7 +15,15 @@ fi - - if make -j5 ARCH=arm 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 Kernel Image Neo1973(GTA02)" -d linux.bin uImage.bin -+ mkimage -A arm -O linux -T kernel -C none -a 30008000 -e 30008000 -n "Openmoko Freerunner Kernel" -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 -+ -+ if [ ! -z "`grep CONFIG_USB_ETH=y .config`" ] ; then -+ rm -f uImage-moredrivers* -+ cp uImage.bin uImage-moredrivers$VERSION.bin -+ fi - exit 0 - else - exit 1 --- -1.5.6.5 - |