summaryrefslogtreecommitdiff
path: root/unsorted/OskitMachTest.mdwn
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2007-09-04 16:33:02 +0200
committerThomas Schwinge <tschwinge@gnu.org>2007-09-04 16:33:02 +0200
commit9dc7ac7d2a69bd0b0a8176daa3e5e03d9515d11d (patch)
treef28af6512615d0361365de59f5c1dc12e047b13a /unsorted/OskitMachTest.mdwn
parent9d1db65a9ea97f852a845b8e2ef2b0d4e85e027b (diff)
Empty `Test/'.
Diffstat (limited to 'unsorted/OskitMachTest.mdwn')
-rw-r--r--unsorted/OskitMachTest.mdwn24
1 files changed, 24 insertions, 0 deletions
diff --git a/unsorted/OskitMachTest.mdwn b/unsorted/OskitMachTest.mdwn
new file mode 100644
index 00000000..24cf9b6f
--- /dev/null
+++ b/unsorted/OskitMachTest.mdwn
@@ -0,0 +1,24 @@
+# <a name="Proposal_to_change_configure_scr"> </a> Proposal to change configure script for GNUmach 2.0
+
+Here are my proposed changes to the GNU Mach 2.0 configure script, configure.in.
+
+## <a name="_with_oskit_"> --with-oskit\* </a>
+
+The first one is basically what Daniel Wagner once suggested. A way for builders to better provide the path of the OSKit, e.g., `--with-oskit=/my/bisarre/path`.
+
+This patch also contains a minor "fix": detect presence of the OSKit before trying to check for a correct version number of the same. It also updates the required version number to be, at the very least, the 2001 release. This because we need the softirq changes introduced therein.
+
+With the patch a configure line like below is entirely possible on a Debian system with the i386-gnu-mig deb package installed.
+
+ crash@isengard:~/Projects/build/oskit-mach$ ../../oskit-mach/configure --host=i386-gnu \
+ --prefix=/usr/hurd --with-oskit=/usr/hurd
+
+## <a name="Drivers_move_Makefile_gt_configu"> Drivers move Makefile ==&gt; configure </a>
+
+The second patch set, currently worked on, is to move the requested drivers from the Makefile to the configure script in the form of `--enable-freebsd-DRIVER` and `--enable-linux-DRIVER`.
+
+This will remove the current `make kernel-ide-ethernet_tulip` combo and introduce a more common `make kernel` scheme.
+
+-- [[Main/JoachimNilsson]] - 21 Jun 2003
+
+* [[ATTACHURLgnumach2-configure-patch1diff]]: Adds --with-oskit and "fixes" a bug.