summaryrefslogtreecommitdiff
path: root/rump_kernel.mdwn
diff options
context:
space:
mode:
authorJoshua Branson <jbranso@fastmail.com>2018-10-27 09:17:53 -0400
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2018-10-27 15:57:48 +0200
commitf83b1996844c5c0dd5596c615f92250b6ba84f22 (patch)
tree03e1a2db7cd7b1b2d4844d243d5ec3350e8f5b72 /rump_kernel.mdwn
parent4845d8baf357752e6a67be08cd17f32535cac86b (diff)
* I modified tcp_ip_stack to reflect that lwip should replace pfinet.
* I modified open_issues/device_drivers_and_io_systems to include rump kernel. * I created a rump kernel wiki page, and I linked to it from the project_ideas/tcp_ip_stack webpage. * I added an obsolete logo to the DDE page, to pointe people to the Rump kernel page.
Diffstat (limited to 'rump_kernel.mdwn')
-rw-r--r--rump_kernel.mdwn40
1 files changed, 40 insertions, 0 deletions
diff --git a/rump_kernel.mdwn b/rump_kernel.mdwn
new file mode 100644
index 00000000..338f5581
--- /dev/null
+++ b/rump_kernel.mdwn
@@ -0,0 +1,40 @@
+[[!meta copyright="Copyright © 2009, 2010 Free Software Foundation, Inc."]]
+
+[[!meta license="""[[!toggle id="license" text="GFDL 1.2+"]][[!toggleable
+id="license" text="Permission is granted to copy, distribute and/or modify this
+document under the terms of the GNU Free Documentation License, Version 1.2 or
+any later version published by the Free Software Foundation; with no Invariant
+Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license
+is included in the section entitled [[GNU Free Documentation
+License|/fdl]]."]]"""]]
+
+
+# Discussion
+
+ The rump kernels provide existing real world drivers from netbsd. Since DDE no longer seems like a promising approach to get drivers for the Hurd, it appears that rump kernels are the best alternative. It already does the hard work of providing an environment where the foreign drivers can run, and offers the additional benefit of being externally maintained. Rump also offers the necessary facilities for running all drivers in separate userspace processes, which is more desirable than drivers running in the microkernel.
+
+
+ * [[community/gsoc/project ideas/driver glue code]]
+
+ * [[open issues/user-space device drivers]]
+
+ * [[open issues/device drivers and io systems]]
+
+---
+
+# Documentation
+
+ * <http://rumpkernel.org/>
+
+ * <http://www.fixup.fi/misc/usenix-login-2015/login_oct15_02_kantee.pdf>
+
+ This is an an opinion paper that explains why operating systems need compartmentalized kernel drivers.
+
+ * <https://github.com/rumpkernel/wiki/wiki/Tutorial:-Getting-started>
+
+ A tutorial introduction for those interested in using and deploying rump kernels.
+
+
+# Source Code
+
+ * <https://github.com/rumpkernel>