summaryrefslogtreecommitdiff
path: root/faq
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2013-03-26 15:49:59 +0100
committerThomas Schwinge <thomas@codesourcery.com>2013-03-26 15:49:59 +0100
commit7c90e65e25f673a9c621c6102ee3d7c130160b01 (patch)
treeb399b10e23f3194d70326eac190f74de473d60d5 /faq
parentab11a8b78ca03dede4b29bbb7a04dac40019042f (diff)
parent6ded0f6763c776e42d363f2b5714c79a34c9b70f (diff)
Merge commit '6ded0f6763c776e42d363f2b5714c79a34c9b70f'
Polish and enhance some pages some more.
Diffstat (limited to 'faq')
-rw-r--r--faq/issues/got_a_db_prompt.mdwn34
-rw-r--r--faq/support/0-drivers.mdwn8
-rw-r--r--faq/support/0-software.mdwn16
3 files changed, 54 insertions, 4 deletions
diff --git a/faq/issues/got_a_db_prompt.mdwn b/faq/issues/got_a_db_prompt.mdwn
new file mode 100644
index 00000000..ce376728
--- /dev/null
+++ b/faq/issues/got_a_db_prompt.mdwn
@@ -0,0 +1,34 @@
+[[!meta copyright="Copyright © 2013 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="Help, I've just gotten a db> prompt"]]
+
+If you see a `db>` prompt on the console, something unexpected and bad happened
+inside the [[GNU Mach kernel|microkernel/mach/gnumach]], which it cannot
+recover from. (Think of it as the equivalent of a [[!wikipedia
+Linux_kernel_oops]], for example.) The `db>` prompt is actually the GNU Mach
+kernel debugger waiting for your commands. For example, you can then reboot
+the system by issuing the `reboot` command, or if you want to help analyze the
+problem, start by typing in the `trace` command, which will display the
+function call trace leading to the crash:
+
+ 0x8007cf1(8088488,5e,40000008,2aa008,0)
+ 0x80071bc(0,0,0,0,0)
+ 0x8006831(24fe00,2000,b,800,0)
+
+This can be decyphered by using:
+
+ $ addr2line -i -f -e /boot/gnumach 0x8007cf1 0x80071bc 0x8006831
+
+You can then [[send us|contact_us]] the results of the `trace` and the
+`addr2line` commands, as well as
+the exact version of the GNU Mach kernel you were running, for further
+investigation. More information about the [[GNU Mach
+debugger|microkernel/mach/gnumach/debugging]] is available.
diff --git a/faq/support/0-drivers.mdwn b/faq/support/0-drivers.mdwn
index 974fb612..54b2d744 100644
--- a/faq/support/0-drivers.mdwn
+++ b/faq/support/0-drivers.mdwn
@@ -15,4 +15,10 @@ Currently, for disks Mach integrates drivers from Linux 2.0 through some
limits hardware support a lot, of course. For network boards, we use the
[[DDE]] toolkit to run linux 2.6.32 drivers in userland processes,
which provides both long-term support for new hardware and safety against driver
-bugs.
+bugs. [[microkernel/mach/gnumach/ports/Xen]] is also supported, both blkfront
+and netfront.
+
+Note however that we have of course not tested all drivers, we obviously don't
+even have all kinds of hardware. So we can not promise that they will all
+work. What probably works for sure is what we usually use: the rtl8139 or e1000
+drivers for instance.
diff --git a/faq/support/0-software.mdwn b/faq/support/0-software.mdwn
index 324dbbef..e58e0bd8 100644
--- a/faq/support/0-software.mdwn
+++ b/faq/support/0-software.mdwn
@@ -11,6 +11,16 @@ License|/fdl]]."]]"""]]
[[!meta title="What software is available for GNU?"]]
- * Most (3/4) packages from [Debian](http://www.debian.org/) [GNU/Linux](http://www.gnu.org/gnu/linux-and-gnu.html) which aren't linux-specific ([Packages That Won't Be Ported](http://www.debian.org/ports/hurd/hurd-devel-debian)) are expected to work on GNU/Hurd too. See the database in <http://packages.debian.org/>. Notably, [GNOME](http://www.gnome.org), and [KDE](http://www.kde.org) work. See the [[porting/guidelines]] document for some common build problems and their solutions.
- * If you can't fetch a package with "apt-get install ", try building it from source: "apt-get source &amp;&amp; cd &lt;package\_dir&gt; &amp;&amp; debian/rules binary".
- * As of March 2013, 78% of Debian packages have been ported on the Hurd. Of course, bug testing is welcome.
+As of March 2013, 78% of all [Debian](http://www.debian.org/)
+[packages](http://packages.debian.org/) are available for [[Debian
+GNU/Hurd|hurd/running/debian]]. Of course, testing and bug fixing is welcome,
+as we have obviously not tested all of them.
+
+Generally, packages
+that aren't Linux-specific (see [Packages That Won't Be
+Ported](http://www.debian.org/ports/hurd/hurd-devel-debian))
+are expected to work on GNU/Hurd too. Notably, [X.Org](http://www.x.org/),
+[GNOME](http://www.gnome.org/), [KDE](http://www.kde.org/),
+[Firefox](http://www.mozilla.org/firefox) work. See
+the [[hurd/porting/guidelines]] document for some common build problems and their
+solutions.