1dc3539474
GNU GRUB, the GRand Unified Bootloader, a flexible and powerful boot loader program for PCs, i386-only. with feedback from and ok bernd
49 lines
763 B
Plaintext
49 lines
763 B
Plaintext
# the default entry to boot
|
|
default 3
|
|
# default timeout
|
|
timeout 5
|
|
|
|
# configure a serial port...
|
|
serial --unit=0 --speed=9600
|
|
# ...and use it
|
|
terminal serial
|
|
|
|
# OpenBSD multiboot setup
|
|
title p0
|
|
root (hd0,0)
|
|
# deactivate unused partitions
|
|
parttype (hd0,0) 0xa6
|
|
parttype (hd0,1) 0xb6
|
|
parttype (hd0,2) 0xb6
|
|
parttype (hd0,3) 0xa6
|
|
makeactive
|
|
chainloader +1
|
|
|
|
title p1
|
|
root (hd0,1)
|
|
parttype (hd0,0) 0xb6
|
|
parttype (hd0,1) 0xa6
|
|
parttype (hd0,2) 0xb6
|
|
parttype (hd0,3) 0xa6
|
|
makeactive
|
|
chainloader +1
|
|
|
|
title p2
|
|
root (hd0,2)
|
|
parttype (hd0,0) 0xb6
|
|
parttype (hd0,1) 0xb6
|
|
parttype (hd0,2) 0xa6
|
|
parttype (hd0,3) 0xa6
|
|
makeactive
|
|
chainloader +1
|
|
|
|
title p3
|
|
root (hd0,3)
|
|
parttype (hd0,0) 0xb6
|
|
parttype (hd0,1) 0xb6
|
|
parttype (hd0,2) 0xb6
|
|
parttype (hd0,3) 0xa6
|
|
makeactive
|
|
chainloader +1
|
|
|