diff options
author | Florian Fainelli <florian@openwrt.org> | 2006-11-06 16:17:11 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2006-11-06 16:17:11 +0000 |
commit | 2a8cb04370c07cefcc8d2fcff2cf248465c05bd8 (patch) | |
tree | d25888b0fabe6a459d105876b05150c98758e38d /target/linux/uml-2.6 | |
parent | 005d083f4e350b494ff679856dd5b6723eee3d69 (diff) | |
download | upstream-2a8cb04370c07cefcc8d2fcff2cf248465c05bd8.tar.gz upstream-2a8cb04370c07cefcc8d2fcff2cf248465c05bd8.tar.bz2 upstream-2a8cb04370c07cefcc8d2fcff2cf248465c05bd8.zip |
Add missing definitions, prevented users of Fedora Core 5 (and probably others) to build UML kernels.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5453 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/uml-2.6')
-rw-r--r-- | target/linux/uml-2.6/patches/02-missing_definitions.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/target/linux/uml-2.6/patches/02-missing_definitions.patch b/target/linux/uml-2.6/patches/02-missing_definitions.patch new file mode 100644 index 0000000000..7facbfff3b --- /dev/null +++ b/target/linux/uml-2.6/patches/02-missing_definitions.patch @@ -0,0 +1,37 @@ +# Newer libcs don't define the JB_* jmp_buf access macros. If this is +# the case, we provide values ourselves. +Index: linux-2.6.15/arch/um/os-Linux/sys-i386/registers.c +=================================================================== +--- linux-2.6.15.orig/arch/um/os-Linux/sys-i386/registers.c 2006-02-13 13:00:06.000000000 -0500 ++++ linux-2.6.15/arch/um/os-Linux/sys-i386/registers.c 2006-02-13 13:04:07.000000000 -0500 +@@ -130,6 +130,12 @@ void get_safe_registers(unsigned long *r + HOST_FP_SIZE * sizeof(unsigned long)); + } + ++#ifndef JB_PC ++#define JB_PC 5 ++#define JB_SP 4 ++#define JB_BP 3 ++#endif ++ + void get_thread_regs(union uml_pt_regs *uml_regs, void *buffer) + { + struct __jmp_buf_tag *jmpbuf = buffer; +Index: linux-2.6.15/arch/um/os-Linux/sys-x86_64/registers.c +=================================================================== +--- linux-2.6.15.orig/arch/um/os-Linux/sys-x86_64/registers.c 2006-02-13 13:00:06.000000000 -0500 ++++ linux-2.6.15/arch/um/os-Linux/sys-x86_64/registers.c 2006-02-13 13:04:07.000000000 -0500 +@@ -78,6 +78,12 @@ void get_safe_registers(unsigned long *r + HOST_FP_SIZE * sizeof(unsigned long)); + } + ++#ifndef JB_PC ++#define JB_PC 7 ++#define JB_RSP 6 ++#define JB_RBP 1 ++#endif ++ + void get_thread_regs(union uml_pt_regs *uml_regs, void *buffer) + { + struct __jmp_buf_tag *jmpbuf = buffer; + |