diff options
Diffstat (limited to 'grub')
| -rw-r--r-- | grub/tftp_boot.mdwn | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/grub/tftp_boot.mdwn b/grub/tftp_boot.mdwn index cecc0196..1a2f5848 100644 --- a/grub/tftp_boot.mdwn +++ b/grub/tftp_boot.mdwn @@ -4,10 +4,10 @@ ### <a name="Debian_Grub"> Debian Grub </a> -The Debian grub packages do not have networking enabled, so you have to apt-get the source, modify the debian/rules file to include --enable-network-card and dpkg-buildpackage to get a .deb of grub that supports TFTP. +The Debian grub packages do not have networking enabled, so you have to apt the source, modify the debian/rules file to include --enable-network-card and dpkg-buildpackage to get a .deb of grub that supports TFTP. 1. cd /usr/src/debian -2. apt-get source grub +2. apt source grub 3. cd grub-\_VERSION\_ 4. Add `--enable-tulip` or similar for your NIC to the `./configure` line of the `configure-stamp` target in the `debian/rules` file. 5. `dpkg-buildpackage` (as `root`) @@ -33,4 +33,6 @@ The `menu.lst` can look something like this: --device-master-port=${device-port} \ --exec-server-task=${exec-task} \ -T typed ${root} $(task-create) $(task-resume) - module /lib/ld.so.1 /hurd/exec $(exec-task=task-create) + module /lib/ld-x86-64.so.1 /hurd/exec $(exec-task=task-create) + +Note: use `ld.so.1` instead of `ld-x86-64.so.1` on 32b systems. |
