[[!meta copyright="Copyright © 2006, 2007, 2008, 2011, 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]]."]]"""]] # Building [[GNU_Mach|gnumach]] from Source If you want to build the [[GNU_Mach|gnumach]] kernel yourself instead of just using a pre-built binary, follow these instructions. The unpacked source tree is around 20 MiB, and the build tree (with all drivers enabled) is around 50 MiB. ## Getting the Source Code You can either use the git repository (see ), $ git clone https://git.savannah.gnu.org/git/hurd/gnumach.git/ $ cd gnumach $ autoreconf --install ... or get the Debian sources to build a Debian package, if you're using Debian. (See [here](http://packages.debian.net/source/unstable/gnumach).) $ apt source gnumach $ cd gnumach-XXXXXXXX ## Building a `.deb` package on Debian Systems: ### Preparing for the Build Building GNU Mach requires the *build-essential* and *fakeroot* packages, and some additional dependencies specified by the gnumach source package: # apt install build-essential fakeroot # apt build-dep gnumach ### Building and Installing ... Debian `.deb` files Start the build process with $ dpkg-buildpackage -us -uc -b But to get it built faster, you probably want to only build the most common uniprocessor variant: $ dpkg-buildpackage -us -uc -b -Ppkg.gnumach.onlyup [[GNU_Mach|gnumach]] is now building. To use the new kernel, you must install the resulting `.deb` package which is located one directory above the build directory and has a similar name as the build directory: # dpkg -i ../gnumach-image-1.8-486_*_hurd-i386.deb You can now reboot your computer and enjoy the new kernel. ## Building from the git repository: ### Preparing for the Build Building GNU Mach requires a C compiler, a _static_ 32 bit standard C library, your favourite flavor of awk (gawk) and GNU make. GNU Mach (and the associated headers) need be built in a separate build directory: $ mkdir build $ cd build Run configure: $ ../configure --prefix= If building on a Linux 64 bit host system, you need a number of additional settings to force a 32 bit build: $ ../configure --prefix= --host=i686-gnu LD=i686-linux-gnu-ld CC=i686-linux-gnu-gcc ### Installing the Header Files First In order to build GNU Mach, you will need a working MIG. Building MIG in turn requires the GNU Mach header files to be already present. So for bootstrapping MIG, you have to install the Mach headers first, for example into `~/gnu/include/`: $ make DESTDIR=~/gnu install-data Now you can [[build_MIG|mig/gnu_mig/building]]. Once you are done with that, come back here to finish the Mach build. ### Building and Installing With MIG present, now build the kernel image: $ make gnumach.gz Optionally run the (tiny) test suite: $ make check It's a good idea to make a backup of the previously installed kernel, in case you can't boot using the new one. That way, you can restore it after booting from a rescue media (or mounting the disk image used by your vm). # cp /boot/gnumach.gz /boot/gnumach.gz.bak GNU Mach can now be moved into place, typically `/boot/gnumach.gz`, so that you can boot your system with the new kernel. # cp gnumach.gz /boot