aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/uml/patches-3.8/002-fix_compilation.patch
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2014-06-12 17:57:19 +0000
committerSteven Barth <steven@midlink.org>2014-06-12 17:57:19 +0000
commit996e57ab29e856b373a9cdf9e945834a86a4e1b9 (patch)
tree7d1516f87a16f3cdd7c93ea26e18f7f6a7fcbe8f /target/linux/uml/patches-3.8/002-fix_compilation.patch
parent17f0a217f034219989480455f4713a0e47108eeb (diff)
downloadupstream-996e57ab29e856b373a9cdf9e945834a86a4e1b9.tar.gz
upstream-996e57ab29e856b373a9cdf9e945834a86a4e1b9.tar.bz2
upstream-996e57ab29e856b373a9cdf9e945834a86a4e1b9.zip
Update UML target to 3.10 and various improvements
Updated target to 3.10.36. Added mconsole exec patch. Added pseudo-random MAC patch (from NetKit). Signed-off-by: Markus Stenberg <markus.stenberg@iki.fi> Reviewed-by: Steven Barth <steven@midlink.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41172 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/uml/patches-3.8/002-fix_compilation.patch')
-rw-r--r--target/linux/uml/patches-3.8/002-fix_compilation.patch24
1 files changed, 0 insertions, 24 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
deleted file mode 100644
index 745f91f490..0000000000
--- a/target/linux/uml/patches-3.8/002-fix_compilation.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-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>