| | 8 | * /etc/lilo.conf (snip) |
| | 9 | {{{ |
| | 10 | # Specifies the boot device. This is where Lilo installs its boot |
| | 11 | # block. It can be either a partition, or the raw device, in which |
| | 12 | # case it installs in the MBR, and will overwrite the current MBR. |
| | 13 | # |
| | 14 | boot=/dev/md1 |
| | 15 | |
| | 16 | # This option may be needed for some software RAID installs. |
| | 17 | # |
| | 18 | raid-extra-boot=mbr-only |
| | 19 | |
| | 20 | # Specifies the location of the map file |
| | 21 | # |
| | 22 | map=/boot/map |
| | 23 | |
| | 24 | # Specifies the number of deciseconds (0.1 seconds) LILO should |
| | 25 | # wait before booting the first image. |
| | 26 | # |
| | 27 | delay=20 |
| | 28 | |
| | 29 | # |
| | 30 | # Boot up Linux by default. |
| | 31 | # |
| | 32 | default=Linux |
| | 33 | |
| | 34 | image=/vmlinuz |
| | 35 | label=Linux |
| | 36 | read-only |
| | 37 | # restricted |
| | 38 | # alias=1 |
| | 39 | append="root=/dev/md1 " |
| | 40 | initrd=/initrd.img |
| | 41 | |
| | 42 | image=/vmlinuz.old |
| | 43 | label=LinuxOLD |
| | 44 | read-only |
| | 45 | optional |
| | 46 | # restricted |
| | 47 | # alias=2 |
| | 48 | append="root=/dev/md1 " |
| | 49 | initrd=/initrd.img.old |
| | 50 | }}} |