~ilya-yanok/ubuntu/precise/grub2/fix-for-948716

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Robert Millan
  • Date: 2009-07-25 19:00:53 UTC
  • mfrom: (1.6.3 upstream)
  • mto: (17.4.13 sid)
  • mto: This revision was merged to the branch mainline in revision 53.
  • Revision ID: james.westby@ubuntu.com-20090725190053-uv3lm6ya3zxs77ep
ImportĀ upstreamĀ versionĀ 1.96+20090725

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /bin/sh -e
2
2
 
3
 
# grub-mkconfig helper script.
 
3
# update-grub helper script.
4
4
# Copyright (C) 2006,2007,2008  Free Software Foundation, Inc.
5
5
#
6
6
# GRUB is free software: you can redistribute it and/or modify
74
74
prepare_grub_to_access_device ${GRUB_DEVICE} | sed -e "s/^/\t/"
75
75
cat << EOF
76
76
        multiboot ${kernel} root=device:${GRUB_DEVICE}
77
 
        module /hurd/${hurd_fs}.static ${hurd_fs} --readonly \\
 
77
        module /hurd/${hurd_fs}.static --readonly \\
78
78
                        --multiboot-command-line='\${kernel-command-line}' \\
79
79
                        --host-priv-port='\${host-port}' \\
80
80
                        --device-master-port='\${device-port}' \\
81
81
                        --exec-server-task='\${exec-task}' -T typed '\${root}' \\
82
82
                        '\$(task-create)' '\$(task-resume)'
83
 
        module /lib/ld.so.1 exec /hurd/exec '\$(exec-task=task-create)'
 
83
        module /lib/ld.so.1 /hurd/exec '\$(exec-task=task-create)'
84
84
}
85
85
EOF