diff options
author | giovanni <giovanni@cvs.openbsd.org> | 2010-02-16 15:16:13 +0000 |
---|---|---|
committer | giovanni <giovanni@cvs.openbsd.org> | 2010-02-16 15:16:13 +0000 |
commit | b4bd4d0724ddfa56a219d63e24bf2d91a6f42677 (patch) | |
tree | 478f6910e70cc7712a2123d8a4e79a0a1aa14d5f /etc/etc.i386 | |
parent | 5b442b885277da4b44744536838d489a29746db4 (diff) |
Add instructions to dual-boot OpenBSD with Grub2
"I think that's ok" sthen@, "sure" miod@
Diffstat (limited to 'etc/etc.i386')
-rw-r--r-- | etc/etc.i386/INSTALL.linux | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/etc/etc.i386/INSTALL.linux b/etc/etc.i386/INSTALL.linux index af99b977b6e..828489d7941 100644 --- a/etc/etc.i386/INSTALL.linux +++ b/etc/etc.i386/INSTALL.linux @@ -1,4 +1,4 @@ -$OpenBSD: INSTALL.linux,v 1.13 2008/10/01 03:14:30 deraadt Exp $ +$OpenBSD: INSTALL.linux,v 1.14 2010/02/16 15:16:12 giovanni Exp $ Linux + OpenBSD: it's possible @@ -331,6 +331,20 @@ kernel /boot/vmlinuz root=/dev/ide/host0/bus0/target0/lun0/part3 ro savedefault boot +Booting with GRUB2 +----------------- +Here is a sample configuration for OpenBSD and Windows 7 + +menuentry "OpenBSD" { + set root (hd0,3,a) + chainloader +1 +} + +menuentry "Windows 7" { + insmod ntfs + set root (hd0,1) + chainloader +1 +} Booting with lilo ----------------- |