Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-grub2
Commits
c6ca973d
Commit
c6ca973d
authored
Apr 18, 2012
by
Vladimir 'phcoder' Serbinenko
Browse files
* util/grub-install.in: New option --efi-directory.
parent
b41be562
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
c6ca973d
2012-04-18 Vladimir Serbinenko <phcoder@gmail.com>
* util/grub-install.in: New option --efi-directory.
2012-04-17 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/loader/i386/linux.c (allocate_pages): Overwrite low memory
util/grub-install.in
View file @
c6ca973d
...
...
@@ -111,6 +111,7 @@ usage () {
print_option_help
"--no-nvram"
"
$(
gettext
"don't update the
\`
boot-device' NVRAM variable. This option is only available on IEEE1275 targets."
)
"
print_option_help
"--removable"
"
$(
gettext
"the installation device is removable. This option is only available on EFI."
)
"
print_option_help
"--bootloader-id=
$(
gettext
"ID"
)
"
"
$(
gettext
"the ID of bootloader. This option is only available on EFI."
)
"
print_option_help
"--efi-directory=
$(
gettext
"DIR"
)
"
"
$(
gettext
"use DIR as the EFI System Partition root."
)
"
echo
gettext
"INSTALL_DEVICE must be system device filename."
;
echo
echo
...
...
@@ -134,6 +135,7 @@ argument () {
allow_floppy
=
""
force_file_id
=
efidir
=
# Check the arguments.
while
test
$#
-gt
0
...
...
@@ -174,6 +176,11 @@ do
--boot-directory
=
*
)
bootdir
=
"
`
echo
"
$option
"
|
sed
's/--boot-directory=//'
`
"
;;
--efi-directory
)
efidir
=
"
`
argument
$option
"
$@
"
`
"
;
shift
;;
--efi-directory
=
*
)
efidir
=
"
`
echo
"
$option
"
|
sed
's/--efi-directory=//'
`
"
;;
--directory
|
-d
)
source_dir
=
"
`
argument
$option
"
$@
"
`
"
;
shift
;;
--directory
=
*
)
...
...
@@ -397,37 +404,40 @@ fi
if
[
x
"
$grub_modinfo_platform
"
=
xefi
]
;
then
# Find the EFI System Partition.
efidir
=
if
test
-d
"
${
bootdir
}
/efi"
;
then
install_device
=
"
`
"
$grub_probe
"
--target
=
device
--device-map
=
"
${
bootdir
}
/efi"
`
"
# Is it a mount point?
if
test
"x
$install_device
"
!=
"x
`
"
$grub_probe
"
--target
=
device
--device-map
=
"
${
bootdir
}
"
`
"
;
then
efidir
=
"
${
bootdir
}
/efi"
fi
elif
test
-d
"
${
bootdir
}
/EFI"
;
then
install_device
=
"
`
"
$grub_probe
"
--target
=
device
--device-map
=
"
${
bootdir
}
/EFI"
`
"
# Is it a mount point?
if
test
"x
$install_device
"
!=
"x
`
"
$grub_probe
"
--target
=
device
--device-map
=
"
${
bootdir
}
"
`
"
;
then
efidir
=
"
${
bootdir
}
/EFI"
fi
elif
test
-n
"
$rootdir
"
&&
test
"x
$rootdir
"
!=
"x/"
;
then
if
test
-n
"
$efidir
"
;
then
install_device
=
"
`
"
$grub_probe
"
--target
=
device
--device-map
=
"
${
efidir
}
"
`
"
else
if
test
-d
"
${
bootdir
}
/efi"
;
then
install_device
=
"
`
"
$grub_probe
"
--target
=
device
--device-map
=
"
${
bootdir
}
/efi"
`
"
# Is it a mount point?
if
test
"x
$install_device
"
!=
"x
`
"
$grub_probe
"
--target
=
device
--device-map
=
"
${
bootdir
}
"
`
"
;
then
efidir
=
"
${
bootdir
}
/efi"
fi
elif
test
-d
"
${
bootdir
}
/EFI"
;
then
install_device
=
"
`
"
$grub_probe
"
--target
=
device
--device-map
=
"
${
bootdir
}
/EFI"
`
"
# Is it a mount point?
if
test
"x
$install_device
"
!=
"x
`
"
$grub_probe
"
--target
=
device
--device-map
=
"
${
bootdir
}
"
`
"
;
then
efidir
=
"
${
bootdir
}
/EFI"
fi
elif
test
-n
"
$rootdir
"
&&
test
"x
$rootdir
"
!=
"x/"
;
then
# The EFI System Partition may have been given directly using
# --root-directory.
install_device
=
"
`
"
$grub_probe
"
--target
=
device
--device-map
=
"
${
rootdir
}
"
`
"
install_device
=
"
`
"
$grub_probe
"
--target
=
device
--device-map
=
"
${
rootdir
}
"
`
"
# Is it a mount point?
if
test
"x
$install_device
"
!=
"x
`
"
$grub_probe
"
--target
=
device
--device-map
=
"
${
rootdir
}
/.."
`
"
;
then
efidir
=
"
${
rootdir
}
"
if
test
"x
$install_device
"
!=
"x
`
"
$grub_probe
"
--target
=
device
--device-map
=
"
${
rootdir
}
/.."
`
"
;
then
efidir
=
"
${
rootdir
}
"
fi
fi
fi
if
test
-n
"
$efidir
"
;
then
efi_fs
=
`
"
$grub_probe
"
--target
=
fs
"--device-map=
${
device_map
}
"
"
${
efidir
}
"
`
if
test
"x
$efi_fs
"
=
xfat
;
then
:
;
else
gettext_printf
"%s doesn't look like an EFI partition.
\n
"
"
${
efidir
}
"
1>&2
e
fi
dir
=
if
test
-n
"
$efidir
"
;
then
efi_fs
=
`
"
$grub_probe
"
--target
=
fs
"--device-map=
${
device_map
}
"
"
$
{
efidir
}
"
`
if
test
"x
$efi_fs
"
=
xfat
;
then
:
;
else
gettext_printf
"%s doesn't look like an EFI partition.
\n
"
"
${
efidir
}
"
1>&2
efidir
=
fi
fi
fi
if
test
-n
"
$efidir
"
;
then
# The EFI specification requires that an EFI System Partition must
# contain an "EFI" subdirectory, and that OS loaders are stored in
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment