1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- #
- # Sample GRUB configuration file
- #
- # Boot automatically after 30 secs.
- set timeout=30
- # By /Linux
- set default=gnulinux
- # Fallback to GNU/
- set
- # For /Linux
- menuentry --id gnulinux {
- set root=(hd0,msdos1)
- linux //dev/
- initrd /initrd.img
- }
- # For booting GNU/
- menuentry
- set
- multiboot /boot/
- module /hurd/
- --multiboot-command-line='${kernel-command-line}' \
- --host-priv-port='${host-port}' \
- --device-master-port='${device-port}' \
- --exec-server-task='${exec-task}' -T
- '$(task-create)' '$(task-resume)'
- module /lib/ /hurd/
- }
- # For
- menuentry
- set
- kfreebsd /boot//kernel
- kfreebsd_loadenv //device.hints
- kfreebsd_module //splash.bmp type=splash_image_data
- set kFreeBSD.vfs.root.mountfrom=ufs:ad0s1a
- }
- menuentry {
- set root=(hd0,msdos1,bsd1)
- kfreebsd //loader
- }
- # For booting NetBSD
- menuentry {
- set root=(hd0,netbsd1)
- knetbsd /
- }
- # For
- menuentry
- set
- kopenbsd /bsd
- }
- # For booting Microsoft Windows
- menuentry {
- set root=(hd0,msdos1)
- chainloader +1
- }
- # For booting Memtest86+
- menuentry {
- set root=(hd0,1)
- linux16 /
- }
- # Change
- menuentry
- set /brown
- set menu_color_highlight=red/
- }
|