diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2009-12-30 00:37:29 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2009-12-30 00:37:29 +0100 |
commit | e6c73709023db39bb9b01e0f63363c3a13fda542 (patch) | |
tree | 5a5af2c503026a0c102c731d967602e0c9cc4497 /open_issues | |
parent | 1ead889249f9b8c2ea0095e96e3bfd9b30d4b9f2 (diff) | |
parent | d5fa1505754178c910267426dcaff8278ae4a5a2 (diff) |
Merge branch 'master' of flubber:~hurd-web/hurd-web
Diffstat (limited to 'open_issues')
-rw-r--r-- | open_issues/dde.mdwn | 28 | ||||
-rw-r--r-- | open_issues/device_drivers_and_io_systems.mdwn | 3 | ||||
-rw-r--r-- | open_issues/grub_legacy.mdwn | 37 | ||||
-rw-r--r-- | open_issues/grub_legacy/grub-install.patch | 23 | ||||
-rw-r--r-- | open_issues/user-space_device_drivers.mdwn | 5 |
5 files changed, 36 insertions, 60 deletions
diff --git a/open_issues/dde.mdwn b/open_issues/dde.mdwn new file mode 100644 index 00000000..3d1de09a --- /dev/null +++ b/open_issues/dde.mdwn @@ -0,0 +1,28 @@ +[[!meta copyright="Copyright © 2009 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]]."]]"""]] + + * [[community/gsoc/project ideas/driver glue code]] + + * [[open issues/user-space device drivers]] + + * [[open issues/device drivers and io systems]] + +--- + +# Documentation + + * <http://demo.tudos.org/dsweeper_tutorial.html> + + * <http://wiki.tudos.org/DDE/DDEKit> + + +# Sources + + * <http://www.inf.tu-dresden.de/index.php?node_id=1584&ln=en> diff --git a/open_issues/device_drivers_and_io_systems.mdwn b/open_issues/device_drivers_and_io_systems.mdwn index f84ddce8..ce50d93e 100644 --- a/open_issues/device_drivers_and_io_systems.mdwn +++ b/open_issues/device_drivers_and_io_systems.mdwn @@ -14,6 +14,7 @@ This is a collection of resources concerning *device drivers* and *I/O systems* in general. Also see [[user-space device drivers]]. +[[community/gsoc/project ideas/driver glue code]]. [[!toc levels=2]] @@ -67,6 +68,8 @@ Also see [[user-space device drivers]]. # External Projects + * [[DDE]] + * [Building Linux Device Drivers on FreeBSD](http://info.iet.unipi.it/~luigi/FreeBSD/linux_bsd_kld.html) diff --git a/open_issues/grub_legacy.mdwn b/open_issues/grub_legacy.mdwn deleted file mode 100644 index 622daa09..00000000 --- a/open_issues/grub_legacy.mdwn +++ /dev/null @@ -1,37 +0,0 @@ -[[!meta copyright="Copyright © 2005, 2009 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]]."]]"""]] - -[[!meta title="GRUB (legacy)"]] - -[[!tag open_issue_porting]] - -Even though it is customarily used *for* booting GNU/Hurd systems, [[GRUB]], -specifically GRUB legacy (which is still in wide-spread use, despite that -rather depricative nickname), has never been ported to be installable when -attempted to be installed *from* GNU/Hurd systems: - - # grub-install \(hd0\) - df: Warning: cannot read table of mounted filesystems - df: Warning: cannot read table of mounted filesystems - Could not find device for /boot: Not found or not a block device. - -There is a patch, [[grub-install.patch]], to fix that. - - -`grub-install`, however, still fails while invoking `grub`: - - # grub-install \(hd0\) - The file /boot/grub/stage1 not read correctly. - - # grub - [...] - grub> dump (hd0,0)/boot/grub/stage1 /tmp/grub_stage1 - - Error 18: Selected cylinder exceeds maximum supported by BIOS diff --git a/open_issues/grub_legacy/grub-install.patch b/open_issues/grub_legacy/grub-install.patch deleted file mode 100644 index 3f6341b4..00000000 --- a/open_issues/grub_legacy/grub-install.patch +++ /dev/null @@ -1,23 +0,0 @@ -2005-08-23 Thomas Schwinge <tschwinge@gnu.org> - - * grub-install (find_device): Rough port for GNU/Hurd. - - ---- grub-install.orig 2005-08-23 16:56:02.000000000 +0200 -+++ grub-install 2005-08-23 17:01:55.000000000 +0200 -@@ -263,7 +263,14 @@ - find_device () { - # For now, this uses the program `df' to get the device name, but is - # this really portable? -- tmp_fname=`df $1/ | sed -n 's%.*\(/dev/[^ ]*\).*%\1%p'` -+ # No. (Not even on GNU/Linux.) - Thomas Schwinge -+ -+ case $host_os in -+ gnu*) # TODO: What about using multiple devices? -+ tmp_fname=`fsysopts $1/ | sed -n 's%.*device:\([^ ]*\).*%/dev/\1%p'`;; -+ *) -+ tmp_fname=`df $1/ | sed -n 's%.*\(/dev/[^ ]*\).*%\1%p'`;; -+ esac - - if test -z "$tmp_fname"; then - echo "Could not find device for $1" 2>&1 diff --git a/open_issues/user-space_device_drivers.mdwn b/open_issues/user-space_device_drivers.mdwn index 33e75942..98f48013 100644 --- a/open_issues/user-space_device_drivers.mdwn +++ b/open_issues/user-space_device_drivers.mdwn @@ -13,6 +13,7 @@ License|/fdl]]."]]"""]] This is a collection of resources concerning *user-space device drivers*. Also see [[device drivers and IO systems]]. +[[community/gsoc/project ideas/driver glue code]]. [[!toc levels=2]] @@ -60,6 +61,8 @@ Also see [[device drivers and IO systems]]. * Hurd on L4: deva, fabrica + * [[DDE]] + * Minix 3 * Start with a simple driver and implement the needed infrastructure (see @@ -150,6 +153,8 @@ Also see [[device drivers and IO systems]]. # External Projects + * [[DDE]] + * <http://ertos.nicta.com.au/research/drivers/uldd/> * <http://gelato.unsw.edu.au/IA64wiki/UserLevelDrivers> |