]>
git.ipfire.org Git - ipfire-2.x.git/blob - src/installer/install-bootloader
2 ############################################################################
4 # This file is part of the IPFire Firewall. #
6 # IPFire is free software; you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation; either version 2 of the License, or #
9 # (at your option) any later version. #
11 # IPFire is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
16 # You should have received a copy of the GNU General Public License #
17 # along with IPFire; if not, write to the Free Software #
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #
20 # Copyright (C) 2014 IPFire Team <info@ipfire.org>. #
22 ############################################################################
24 GRUB_INSTALL_ARGS
="--no-floppy --recheck --force"
26 function find_bootloader_device
() {
29 if find_device
"${mp}"; then
37 function find_device
() {
38 local mountpoint
="${1}"
41 local dev mp fs flags rest
42 while read -r dev mp fs flags rest
; do
43 # Skip unwanted entries
44 [ "${dev}" = "rootfs" ] && continue
46 if [ "${mp}" = "${mountpoint}" ] && [ -b "${dev}" ]; then
47 root
="$(basename "${dev}")"
52 # Get the actual device from the partition that holds /
53 while [ -n "${root}" ]; do
54 if [ -e "/sys/block/${root}" ]; then
59 # Remove last character
66 function device_is_mdraid
() {
69 [ -d "/sys/block/${device/\/dev/}/md" ]
72 function mdraid_get_slaves
() {
76 for slave
in /sys
/block
/${device/\/dev/}/slaves
/*; do
77 echo "/dev/$(basename "${slave}")"
81 function grub_update_config
() {
82 echo "Updating configuration..."
84 if ! grub-mkconfig
-o /boot
/grub
/grub.cfg
&>/dev
/null
; then
85 echo "Could not update configuration. Aborting." >&2
92 function grub_install
() {
95 echo "Installing GRUB on ${device}..."
97 if [ ! -b "${device}" ]; then
98 echo "${device} does not exist or is not a block device" >&2
103 case "$(uname -m)" in
111 arches
="i386-pc x86_64-efi"
116 for arch
in ${arches}; do
117 local args
="--target=${arch}"
121 # Skip all EFI architectures if no EFI partition exists
122 if [ ! -d "/boot/efi" ]; then
126 args
="${args} --efi-directory=/boot/efi"
128 # Don't try to modify the BIOS when we are
129 # not running on EFI right now
130 if [ ! -d "/sys/firmware/efi" ]; then
131 args
="${args} --no-nvram"
137 for removable
in "" "--removable"; do
138 if ! grub-install
${GRUB_INSTALL_ARGS} ${args} \
139 ${removable} "${device}" &>/dev
/null
; then
140 echo "Could not install GRUB on ${device}" >&2
144 # Do not try to install with --removable for non-efi architectures
145 [[ "${arch}" =~ \
-efi$
]] ||
break
155 # Find the root device
156 if [ -z "${device}" ]; then
157 device
="$(find_bootloader_device)"
158 if [ -z "${device}" ]; then
159 echo "Could not find root device. Aborting." >&2
163 echo "Found bootloader device: ${device}"
166 if [ ! -b "${device}" ]; then
167 echo "${device} does not exist" >&2
171 # Update configuration files
172 grub_update_config ||
return $?
174 # Handle mdraid devices
175 if device_is_mdraid
"${device}"; then
177 for slave
in $
(mdraid_get_slaves
"${device}"); do
178 grub_install
"${slave}"
181 # Handle normal block devices
183 grub_install
"${device}"