From f4987d5b212dc42cb59db57236c737b7583cba04 Mon Sep 17 00:00:00 2001 From: Marc Andre Tanner Date: Fri, 27 Nov 2009 14:20:27 +0100 Subject: [PATCH] kexec-tools: update to latest git version with This contains a patch to fix architecture detection. Signed-off-by: Marc Andre Tanner --- download.sh | 2 +- sources/patches/kexec-tools-fix-arch-detection.patch | 11 ----------- 2 files changed, 1 insertion(+), 12 deletions(-) delete mode 100644 sources/patches/kexec-tools-fix-arch-detection.patch diff --git a/download.sh b/download.sh index f37e1a5..086e9a9 100755 --- a/download.sh +++ b/download.sh @@ -32,7 +32,7 @@ URL=http://www.busybox.net/downloads/busybox-1.15.2.tar.bz2 \ SHA1=2f396a4cb35db438a9b4af43df6224f343b8a7ae \ download || dienow -URL='http://git.kernel.org/?p=linux/kernel/git/horms/kexec-tools.git;a=snapshot;h=aee54c10512b494747b03121fb0b3b1e91f63645;sf=tgz' \ +URL='http://git.kernel.org/?p=linux/kernel/git/horms/kexec-tools.git;a=snapshot;h=d61381a70a57a01b87afee90c976675f047d447d;sf=tgz' \ SHA1= \ RENAME="s/.*h=(.*);.*/kexec-tools-\1.tar.gz/" \ download || dienow diff --git a/sources/patches/kexec-tools-fix-arch-detection.patch b/sources/patches/kexec-tools-fix-arch-detection.patch deleted file mode 100644 index 7a11028..0000000 --- a/sources/patches/kexec-tools-fix-arch-detection.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- kexec-tools/kexec/phys_arch.c 2008-07-15 02:46:43.000000000 +0200 -+++ kexec-tools-fixed/kexec/phys_arch.c 2009-11-16 22:09:00.000000000 +0100 -@@ -14,7 +14,7 @@ - } - - for (i = 0; arches[i].machine; ++i) -- if (strcmp(utsname.machine, arches[i].machine) == 0) -+ if (strstr(utsname.machine, arches[i].machine) == utsname.machine) - return arches[i].arch; - - fprintf(stderr, "Unsupported machine type: %s\n", -- 2.11.4.GIT