Changes between Version 3 and Version 4 of bootloaders/grub2


Ignore:
Timestamp:
May 13, 2010, 6:04:59 AM (14 years ago)
Author:
Jonathan
Comment:

Thanks to Stef Bon from pointing out these changes.

Legend:

Unmodified
Added
Removed
Modified
  • bootloaders/grub2

    v3 v4  
    2222The 'make check' is optional.
    2323{{{
    24 ./configure --prefix=/usr
     24./configure --prefix=/usr --sysconfdir=/etc
    2525make
    2626make check
     
    3636
    3737== Creating the Boot Menu ==
    38 GRUB uses its own naming structure for drives and partitions in the form of (hdn,m), where n is the hard drive number and m is the partition number, both starting from zero. For example, partition hda1 is (hd0,0) to GRUB and hdb3 is (hd1,2). In contrast to Linux, GRUB does not consider CD-ROM drives to be hard drives. For example, if using a CD on hdb and a second hard drive on hdc, that second hard drive would still be (hd1).
     38GRUB uses its own naming structure for drives and partitions in the form of (hdn,m), where n is the hard drive number and m is the partition number. The hard drive numbers start from zero and the parition numbers from one. For example, partition hda1 is (hd0,1) to GRUB and hdb3 is (hd1,3). In contrast to Linux, GRUB does not consider CD-ROM drives to be hard drives. For example, if using a CD on hdb and a second hard drive on hdc, that second hard drive would still be (hd1).
    3939
    40 Create a "Boot Menu" for grub by defining the boot menu, ${CLFS} is only required if you are using the boot method. The menu below uses the second partition on the first hard drive, (hd0,1), remember to substitute this for your hard drive and parition.
     40Create a "Boot Menu" for grub by defining the boot menu, ${CLFS} is only required if you are using the boot method. The menu below uses the second partition on the first hard drive, (hd0,2), remember to substitute this for your hard drive and parition.
    4141{{{
    4242cat > ${CLFS}/boot/grub/grub.cfg << "EOF"
     
    6666}}}
    6767
     68
    6869=== Setting the Frame Buffer Resolution ===
    6970Add the following to the start of your grub.cfg file.