# # Sample boot menu configuration file # # # 27-Sep-04 amo Date-of-Birth # 13-Sep-05 amo Modified for USB-Stick # 16-Sep-05 amo Use initrd-2005.0912.gz ( even for vfat ) naming vs initrd.gz # 29-Sep-05 amo Changed from initrd-2005.0912.gz to SBM-test.initrd.gz # # # # To make the usbstick bootable # ----------------------------- # grub-install /dev/sda1 # # To Manually Install grub # ------------------------ # http://Linux-Boot.net/Loaders/Grub/Examples/Grub-Install-Howto.txt # # # # # Boot automatically after 2 secs timeout 3 # By default, boot the first entry. default 0 # Fallback to the second entry. # fallback 1 # grub colors # color light-green/brown blink-red/blue # color white/blue yellow/blue # # # Drive Mapping: # -------------- # When only a usb-stick, it will be hd0 # When with hda and usb-stickm, hda will still have /boot/vmlinuz, etc # # Use device.map.sda to over-ride grub default device.map # # # cat /boot/grub/device.map # ------------------------ # (fd0) /dev/fd0 # (hd0) /dev/hdc # (hd1) /dev/sda # # # Use customized /boot/grub/device.map.sda # ----------------------------------------- # (hd0) /dev/sda # (hd1) /dev/hdc # # # grub boot messages # # gfxmenu (hd1,0)/boot/message gfxmenu (hd0,0)/boot/message.usb.txt # # # USB-Stick # ---------- title USB-Stick root (hd0,0) kernel /boot/vmlinuz-2.4.31ow.p4 vga=0x31a showopts root=/dev/loop0 rw initrd /boot/initrd.gz # # # Debug Mode # ---------- title InitRD-Debug root (hd0,0) kernel /boot/vmlinuz-2.4.31ow.p4 vga=0x31a showopts root=/dev/ram0 init=/bin/bash rw initrd /boot/initrd.gz # # # Single user # ----------- title RootFS-Debug root (hd0,0) kernel /boot/vmlinuz-2.4.31ow.p4 vga=0x31a showopts root=/dev/loop0 1 rw initrd /boot/initrd.gz # # # Development System # ------------------ title hdc-2.4.31.p4 root (hd1,0) kernel /boot/vmlinuz-2.4.31ow.p4 root=/dev/hdc1 vga=0x31a showopts # # # End of file