summaryrefslogtreecommitdiffstats
path: root/target/linux/s3c24xx/patches-2.6.24/1257-fix-build-hash-name-no-colon-separator.patch.patch
diff options
context:
space:
mode:
authorMirko Vogt <mirko@openwrt.org>2008-12-12 11:58:53 +0000
committerMirko Vogt <mirko@openwrt.org>2008-12-12 11:58:53 +0000
commit614683faf8029100802db06a825648d0b6490285 (patch)
tree7401b135dc7ce24ff0175e67e0f2ce7f96296ff0 /target/linux/s3c24xx/patches-2.6.24/1257-fix-build-hash-name-no-colon-separator.patch.patch
parent4a018d2445c5f249179ff82c8fffb0e3b717f738 (diff)
downloadmaster-31e0f0ae-614683faf8029100802db06a825648d0b6490285.tar.gz
master-31e0f0ae-614683faf8029100802db06a825648d0b6490285.tar.bz2
master-31e0f0ae-614683faf8029100802db06a825648d0b6490285.zip
changed Makefile and profiles, added patches for kernel 2.6.24 (stable-branch of Openmoko)
SVN-Revision: 13613
Diffstat (limited to 'target/linux/s3c24xx/patches-2.6.24/1257-fix-build-hash-name-no-colon-separator.patch.patch')
-rw-r--r--target/linux/s3c24xx/patches-2.6.24/1257-fix-build-hash-name-no-colon-separator.patch.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/target/linux/s3c24xx/patches-2.6.24/1257-fix-build-hash-name-no-colon-separator.patch.patch b/target/linux/s3c24xx/patches-2.6.24/1257-fix-build-hash-name-no-colon-separator.patch.patch
new file mode 100644
index 0000000000..d9e8c85fbb
--- /dev/null
+++ b/target/linux/s3c24xx/patches-2.6.24/1257-fix-build-hash-name-no-colon-separator.patch.patch
@@ -0,0 +1,32 @@
+From 2c55337cb0cde08203df321a108409b7e33e6904 Mon Sep 17 00:00:00 2001
+From: Andy Green <andy@openmoko.com>
+Date: Wed, 6 Aug 2008 23:13:28 +0100
+Subject: [PATCH] fix-build-hash-name-no-colon-separator.patch
+ Suggested-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
+
+Colons are not very friendly for tar... scp has trouble too but
+you can override that by prepending any path like ./ ... still
+better to dilute the colon down to a _ avoiding - because it can
+appear in branch names we use.
+
+Signed-off-by: Andy Green <andy@openmoko.com>
+---
+ build | 2 +-
+ 1 files changed, 1 insertions(+), 1 deletions(-)
+
+diff --git a/build b/build
+index 63bb0fc..9fda9c7 100755
+--- a/build
++++ b/build
+@@ -10,7 +10,7 @@ VERSION=
+ if [ -d .git ] ; then
+ HEAD=`git show --pretty=oneline | head -n1 | cut -d' ' -f1 | cut -b1-16`
+ BRANCH=`git branch | grep ^\* | cut -d' ' -f2`
+- VERSION=-$BRANCH:$HEAD
++ VERSION=-$BRANCH\_$HEAD
+ fi
+
+ if make -j5 ARCH=arm EXTRAVERSION=$VERSION; then
+--
+1.5.6.5
+