Skip to content

Commit

Permalink
bootloader: consider GRUB_CFG as location for grub config
Browse files Browse the repository at this point in the history
sys-kernel/installkernel[grub] supports setting GRUB_CFG in the environment to
update a grub.cfg in a non-standard location. Specifically this is useful with
sys-boot/grub[secureboot] where the built grub efi executable loads the
grub.cfg from the same directory it is in.

Recognize the same environment variable here so we don't accidentally update
the wrong config.

Signed-off-by: Andrew Ammerlaan <[email protected]>
  • Loading branch information
Nowa-Ammerlaan committed Oct 27, 2024
1 parent 55aa5e8 commit 6504feb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
6 changes: 5 additions & 1 deletion ecleankernel/bootloader/grub.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# SPDX-License-Identifier: GPL-2.0-or-later

import logging
import os
import os.path
import typing

Expand All @@ -11,7 +12,10 @@
class GRUB(LILO):
name = 'grub'
kernel_re = r'^\s*(kernel|module)\s*(\([^)]+\))?(?P<path>\S+)'
def_path = ('/boot/grub/menu.lst', '/boot/grub/grub.conf')
def_path = (os.environ.get("GRUB_CFG"),
'/boot/grub/menu.lst',
'/boot/grub/grub.conf',
)

def _get_kernels(self,
content: str
Expand Down
6 changes: 5 additions & 1 deletion ecleankernel/bootloader/grub2.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# SPDX-License-Identifier: GPL-2.0-or-later

import logging
import os
import subprocess
import typing

Expand All @@ -17,7 +18,10 @@
class GRUB2(GRUB):
name = 'grub2'
kernel_re = r'^\s*linux\s*(\([^)]+\))?(?P<path>\S+)'
def_path = ('/boot/grub/grub.cfg', '/boot/grub2/grub.cfg')
def_path = (os.environ.get("GRUB_CFG"),
'/boot/grub/grub.cfg',
'/boot/grub2/grub.cfg',
)

def __init__(self) -> None:
super().__init__()
Expand Down
4 changes: 3 additions & 1 deletion ecleankernel/bootloader/lilo.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class LILO(Bootloader):
name = 'lilo'
kernel_re = r'^\s*image\s*=\s*(?P<path>.+)\s*$'
def_path: typing.Tuple[str, ...] = ('/etc/lilo.conf',)
def_path: typing.Tuple[typing.Optional[str], ...] = ('/etc/lilo.conf',)

def __init__(self,
path: typing.Optional[str] = None
Expand All @@ -23,6 +23,8 @@ def __init__(self,
paths = (paths,)

for p in paths:
if p is None:
continue
try:
with open(p) as f:
logging.debug(f'{p} found')
Expand Down

0 comments on commit 6504feb

Please sign in to comment.