~ubuntu-branches/ubuntu/wily/grub2/wily-proposed

« back to all changes in this revision

Viewing changes to util/grub.d/10_hurd.in

  • Committer: Bazaar Package Importer
  • Author(s): Felix Zielcke, Robert Millan, Felix Zielcke
  • Date: 2010-01-26 19:26:25 UTC
  • mfrom: (1.13.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20100126192625-coq6czap2ofjollf
Tags: 1.98~20100126-1
* New Bazaar snapshot.
  - Includes mipsel-yeeloong port.

[ Robert Millan ]
* config.in: Lower priority of grub2/linux_cmdline_default.

[ Felix Zielcke ]
* Drop `CFLAGS=-O0' workaround on powerpc. Should be fixed correctly now.
* Ship grub-bin2h and grub-script-check in grub-common.
* Terminate NEWS.Debian with a blank line like lintian would suggest
  if that check would be working correctly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
        module          /lib/ld.so.1 exec /hurd/exec '\$(exec-task=task-create)'
90
90
}
91
91
EOF
 
92
 
 
93
cat << EOF
 
94
menuentry "${OS} (recovery mode)" {
 
95
EOF
 
96
prepare_grub_to_access_device ${GRUB_DEVICE_BOOT} | sed -e "s/^/\t/"
 
97
cat << EOF
 
98
        echo            $(gettext "Loading GNU Mach ...")
 
99
        multiboot       ${kernel} root=device:${GRUB_DEVICE#/dev/} -s
 
100
EOF
 
101
save_default_entry | sed -e "s/^/\t/"
 
102
prepare_grub_to_access_device ${GRUB_DEVICE} | sed -e "s/^/\t/"
 
103
cat << EOF
 
104
        echo            $(gettext "Loading the Hurd ...")
 
105
        module          /hurd/${hurd_fs}.static ${hurd_fs} \\
 
106
                        --multiboot-command-line='\${kernel-command-line}' \\
 
107
                        --host-priv-port='\${host-port}' \\
 
108
                        --device-master-port='\${device-port}' \\
 
109
                        --exec-server-task='\${exec-task}' -T typed '\${root}' \\
 
110
                        '\$(task-create)' '\$(task-resume)'
 
111
        module          /lib/ld.so.1 exec /hurd/exec '\$(exec-task=task-create)'
 
112
}
 
113
EOF