calamares/src/modules/grubcfg/main.py

114 lines
4.0 KiB
Python
Raw Normal View History

2014-08-19 14:57:22 +02:00
#!/usr/bin/env python3
2015-02-18 15:06:10 +01:00
# -*- coding: utf-8 -*-
#
2014-08-19 14:57:22 +02:00
# === This file is part of Calamares - <http://github.com/calamares> ===
#
2015-02-21 10:24:13 +01:00
# Copyright 2014-2015, Philip Müller <philm@manjaro.org>
2014-08-19 14:57:22 +02:00
#
2015-02-18 15:37:03 +01:00
# Calamares is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
2014-08-19 14:57:22 +02:00
#
2015-02-18 15:37:03 +01:00
# Calamares is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
2014-08-19 14:57:22 +02:00
#
2015-02-18 15:37:03 +01:00
# You should have received a copy of the GNU General Public License
# along with Calamares. If not, see <http://www.gnu.org/licenses/>.
2014-08-19 14:57:22 +02:00
import libcalamares
import os
def modify_grub_default(partitions, root_mount_point, distributor):
2015-02-21 10:24:13 +01:00
""" Configures '/etc/default/grub' for hibernation and plymouth.
2015-02-20 20:54:25 +01:00
:param partitions:
:param root_mount_point:
:param distributor:
:return:
"""
2014-08-19 14:57:22 +02:00
default_dir = os.path.join(root_mount_point, "etc/default")
default_grub = os.path.join(default_dir, "grub")
2015-02-17 14:38:30 +01:00
distributor_replace = distributor.replace("'", "'\\''")
plymouth_bin = libcalamares.utils.chroot_call("sh -c \"which plymouth\"")
2014-08-19 15:46:36 +02:00
use_splash = ""
swap_uuid = ""
2014-08-19 14:57:22 +02:00
if plymouth_bin == 0:
2014-08-19 15:46:36 +02:00
use_splash = "splash"
2014-08-19 14:57:22 +02:00
for partition in partitions:
if partition["fs"] == "linuxswap":
swap_uuid = partition["uuid"]
if swap_uuid != "":
2015-02-18 15:37:03 +01:00
kernel_cmd = "GRUB_CMDLINE_LINUX_DEFAULT=\"resume=UUID={!s} quiet {!s}\"".format(swap_uuid, use_splash)
2014-08-19 14:57:22 +02:00
else:
2015-02-17 14:38:30 +01:00
kernel_cmd = "GRUB_CMDLINE_LINUX_DEFAULT=\"quiet {!s}\"".format(use_splash)
2014-08-19 14:57:22 +02:00
2015-02-17 14:38:30 +01:00
distributor_line = "GRUB_DISTRIBUTOR=\"{!s}\"".format(distributor_replace)
2014-08-19 14:57:22 +02:00
if not os.path.exists(default_dir):
os.mkdir(default_dir)
have_kernel_cmd = False
have_distributor_line = False
if "overwrite" in libcalamares.job.configuration:
overwrite = libcalamares.job.configuration["overwrite"]
else:
overwrite = False
if os.path.exists(default_grub) and not overwrite:
with open(default_grub, 'r') as grub_file:
lines = [x.strip() for x in grub_file.readlines()]
for i in range(len(lines)):
if lines[i].startswith("#GRUB_CMDLINE_LINUX_DEFAULT"):
lines[i] = kernel_cmd
have_kernel_cmd = True
elif lines[i].startswith("GRUB_CMDLINE_LINUX_DEFAULT"):
lines[i] = kernel_cmd
have_kernel_cmd = True
elif lines[i].startswith("#GRUB_DISTRIBUTOR") or lines[i].startswith("GRUB_DISTRIBUTOR"):
lines[i] = distributor_line
have_distributor_line = True
else:
lines = []
if "defaults" in libcalamares.job.configuration:
for key, value in libcalamares.job.configuration["defaults"].items():
if value.__class__.__name__ == "bool":
if value:
escaped_value = "true"
else:
escaped_value = "false"
else:
escaped_value = str(value).replace("'", "'\\''")
2015-02-18 15:37:03 +01:00
lines.append("{!s}=\"{!s}\"".format(key, escaped_value))
if not have_kernel_cmd:
lines.append(kernel_cmd)
2014-08-19 14:57:22 +02:00
if not have_distributor_line:
lines.append(distributor_line)
2014-08-19 14:57:22 +02:00
with open(default_grub, 'w') as grub_file:
grub_file.write("\n".join(lines) + "\n")
return None
2014-08-19 14:57:22 +02:00
2015-02-18 15:37:03 +01:00
2014-08-19 14:57:22 +02:00
def run():
2015-02-21 10:24:13 +01:00
""" Calls routine with given parameters to modify '/etc/default/grub'.
2015-02-20 20:54:25 +01:00
:return:
"""
2014-08-19 14:57:22 +02:00
partitions = libcalamares.globalstorage.value("partitions")
root_mount_point = libcalamares.globalstorage.value("rootMountPoint")
branding = libcalamares.globalstorage.value("branding")
distributor = branding["bootloaderEntryName"]
return modify_grub_default(partitions, root_mount_point, distributor)