mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.5 KiB

  1. #
  2. # LVM boot cycle:
  3. # Boot device is a small partition with dos-like filesystem.
  4. # Some PC manufacturers always create such partitions for their
  5. # utilities. It can be used to get a rescue stage2 running and thus
  6. # getting up your whole system. There is no need for another partition
  7. # except the LVM physical volume that holds your volume groups.
  8. #
  9. title ROCK Linux productive LVM boot cycle
  10. kernel (hd0,0)/vmlinuz-2.6.7 root=/dev/ram0 overlay_failure=ignore boot=vfat:/dev/discs/disc0/part1 stage2init=/sbin/init-lvm-cycle rootlv=/dev/vg00/lvroot0 panic=10
  11. initrd (hd0,0)/rescue/initrd.img
  12. #
  13. # rescue from hdd:
  14. # System location defaults to "/mnt_boot/rescue/system.tar.bz2" here.
  15. # Default boot device is /dev/discs/disc0/part1.
  16. # No rootlv param is given so we will reach stage2 with gettys here.
  17. #
  18. title ROCK Linux advanced rescue system from HDD
  19. kernel (hd0,0)/vmlinuz-2.6.7 root=/dev/ram0 overlay_failure=ignore
  20. initrd (hd0,0)/rescue/initrd.img
  21. #
  22. # rescue from CDROM (fdemu):
  23. # We pass the boot param to give correct filesystem type and block
  24. # device.
  25. #
  26. title ROCK Linux advanced rescue system from CDROM
  27. kernel (hd0)/vmlinuz root=/dev/ram0 boot=iso9660:/dev/cdroms/cdrom0 panic=30
  28. initrd (fd0)/initrd.gz
  29. #
  30. # LVM boot cycle from CDROM:
  31. # We even load or stage2 from CDROM so we need no partition except some
  32. # physical volume to hold our volume groups.
  33. #
  34. title ROCK Linux productive - LVM boot cycle (from CDROM)
  35. kernel (fd0)/vmlinuz root=/dev/ram0 boot=iso9660:/dev/cdroms/cdrom0 stage2init=/sbin/init-lvm-cycle rootlv=/dev/vg00/lvroot0 panic=30
  36. initrd (fd0)/initrd.gz