~ubuntu-branches/debian/sid/grub2/sid-200907171840

« back to all changes in this revision

Viewing changes to debian/grub-firmware-qemu_grub.cfg

  • Committer: Bazaar Package Importer
  • Author(s): Robert Millan
  • Date: 2009-07-02 13:23:51 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090702132351-tanpn0ryyijp93gu
Tags: 1.96+20090702-1
* New SVN snapshot.
* rules: Remove duplicated files in sparc64-ieee1275 port.
* rules: Comment out -DGRUB_ASSUME_LINUX_HAS_FB_SUPPORT=1 setting.  We'll
  re-evaluate using it when it's more mature.  (Closes: #535026).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
set default=0
 
2
set fallback=1
 
3
set timeout=10
 
4
 
 
5
menuentry "Search & load /boot/multiboot.img" {
 
6
        search -s -f /boot/multiboot.img
 
7
        if multiboot /boot/multiboot.img ; then
 
8
                boot
 
9
        fi
 
10
        unset timeout
 
11
}
 
12
 
 
13
# For separate /boot partition.
 
14
menuentry "Search & load /multiboot.img" {
 
15
        search -s -f /multiboot.img
 
16
        if multiboot /multiboot.img ; then
 
17
                boot
 
18
        fi
 
19
        unset timeout
 
20
}
 
21
 
 
22
menuentry "Search & source /boot/grub/grub.cfg" {
 
23
        search -s -f /boot/grub/grub.cfg
 
24
        source /boot/grub/grub.cfg
 
25
        unset timeout
 
26
}
 
27
 
 
28
# For separate /boot partition.
 
29
menuentry "Search & source /grub/grub.cfg" {
 
30
        search -s -f /grub/grub.cfg
 
31
        source /grub/grub.cfg
 
32
        unset timeout
 
33
}
 
34
 
 
35
menuentry "Reboot" {
 
36
        reboot
 
37
}