summaryrefslogtreecommitdiffstats
path: root/target/linux/uml
diff options
context:
space:
mode:
authorSteven Barth <cyrus@openwrt.org>2013-09-24 13:36:38 +0000
committerSteven Barth <cyrus@openwrt.org>2013-09-24 13:36:38 +0000
commit31f654396ab5cb0b36015388d76bd224d7abf32a (patch)
tree88f6d0afb7de01b86473f648e88cfde079cfb11b /target/linux/uml
parent777e69451d48ad5ae4a26afb968d604007bc2e6e (diff)
downloadmaster-31e0f0ae-31f654396ab5cb0b36015388d76bd224d7abf32a.tar.gz
master-31e0f0ae-31f654396ab5cb0b36015388d76bd224d7abf32a.tar.bz2
master-31e0f0ae-31f654396ab5cb0b36015388d76bd224d7abf32a.zip
uml: fix some kernel compilation issues with GCC
SVN-Revision: 38165
Diffstat (limited to 'target/linux/uml')
-rw-r--r--target/linux/uml/patches-3.8/002-fix_compilation.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/target/linux/uml/patches-3.8/002-fix_compilation.patch b/target/linux/uml/patches-3.8/002-fix_compilation.patch
new file mode 100644
index 0000000000..745f91f490
--- /dev/null
+++ b/target/linux/uml/patches-3.8/002-fix_compilation.patch
@@ -0,0 +1,24 @@
+diff --git a/arch/um/os-Linux/signal.c b/arch/um/os-Linux/signal.c
+index b1469fe..9d9f1b4 100644
+--- a/arch/um/os-Linux/signal.c
++++ b/arch/um/os-Linux/signal.c
+@@ -15,7 +15,7 @@
+ #include <sysdep/mcontext.h>
+ #include "internal.h"
+
+-void (*sig_info[NSIG])(int, siginfo_t *, struct uml_pt_regs *) = {
++void (*sig_info[NSIG])(int, struct siginfo *, struct uml_pt_regs *) = {
+ [SIGTRAP] = relay_signal,
+ [SIGFPE] = relay_signal,
+ [SIGILL] = relay_signal,
+--- a/arch/um/os-Linux/start_up.c
++++ b/arch/um/os-Linux/start_up.c
+@@ -15,6 +15,8 @@
+ #include <sys/mman.h>
+ #include <sys/stat.h>
+ #include <sys/wait.h>
++#include <sys/time.h>
++#include <sys/resource.h>
+ #include <asm/unistd.h>
+ #include <init.h>
+ #include <os.h>