diff options
author | matein4 <matein4@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-01-20 19:46:45 +0000 |
---|---|---|
committer | matein4 <matein4@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-01-20 19:46:45 +0000 |
commit | 5f743914319f8cb3a22f17aafb6acfbf49be18b3 (patch) | |
tree | 426271aed35419bcb281de8e2141aadf943dbdf9 /package/kexec-tools/patches/0001-arm.patch | |
parent | f654420911cb81ddde3059deaa9988516eeb9eaf (diff) |
kexec-tools update to version 2.0.0; add support for armeb.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14121 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/kexec-tools/patches/0001-arm.patch')
-rw-r--r-- | package/kexec-tools/patches/0001-arm.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/package/kexec-tools/patches/0001-arm.patch b/package/kexec-tools/patches/0001-arm.patch new file mode 100644 index 0000000000..4fb08fc515 --- /dev/null +++ b/package/kexec-tools/patches/0001-arm.patch @@ -0,0 +1,24 @@ +diff -ruN kexec-tools/kexec/arch/arm/kexec-arm.c kexec-tools-mod/kexec/arch/arm/kexec-arm.c +--- kexec-tools/kexec/arch/arm/kexec-arm.c 2008-07-14 05:28:19.000000000 -0600 ++++ kexec-tools-mod/kexec/arch/arm/kexec-arm.c 2008-12-04 17:35:46.913936145 -0600 +@@ -110,6 +110,8 @@ + + const struct arch_map_entry arches[] = { + { "arm", KEXEC_ARCH_ARM }, ++ { "armv5teb", KEXEC_ARCH_ARM }, ++ { "armv6l", KEXEC_ARCH_ARM }, + { 0 }, + }; + +diff -ruN kexec-tools/kexec/arch/arm/kexec-zImage-arm.c kexec-tools-mod/kexec/arch/arm/kexec-zImage-arm.c +--- kexec-tools/kexec/arch/arm/kexec-zImage-arm.c 2008-07-14 05:28:19.000000000 -0600 ++++ kexec-tools-mod/kexec/arch/arm/kexec-zImage-arm.c 2008-12-04 17:03:41.512536642 -0600 +@@ -11,7 +11,7 @@ + #include <stdint.h> + #include <getopt.h> + #include <arch/options.h> +-#include <asm/page.h> ++#include <unistd.h> + #include "../../kexec.h" + + #define COMMAND_LINE_SIZE 1024 |