bugGNU GRUB - Bugs: bug #56070, Allow environmental access to all...

 
 

You are not allowed to post comments on this tracker with your current authentication level.

bug #56070: Allow environmental access to all variables

Submitter:  jidanni
Submitted:  Thu 04 Apr 2019 04:34:23 AM UTC
   
 
Category:  Configuration Severity:  Major
Priority:  5 - Normal Item Group:  None
Status:  None Privacy:  Public
Assigned to:  None Originator Name: 
Open/Closed:  Open Release:  2.02~rc1
Release:  Reproducibility:  Every Time
Planned Release:  None

Thu 04 Apr 2019 04:34:23 AM UTC, original submission:  

In e,g,, /etc/grub.d/10_linux

with lines like

ubuntu_recovery="0"


instead of

: ${ubuntu_recovery="0"}

and

if [ -x /lib/recovery-mode/recovery-menu ]; then
    GRUB_CMDLINE_LINUX_RECOVERY=recovery
else
    GRUB_CMDLINE_LINUX_RECOVERY=single
fi

instead of

if [ -x /lib/recovery-mode/recovery-menu ]; then
    GRUB_CMDLINE_LINUX_RECOVERY="recovery $GRUB_CMDLINE_LINUX_RECOVERY"
else
    GRUB_CMDLINE_LINUX_RECOVERY="single $GRUB_CMDLINE_LINUX_RECOVERY"
fi

at

if [ "$ubuntu_recovery" = 1 ]; then
    GRUB_CMDLINE_LINUX_RECOVERY="$GRUB_CMDLINE_LINUX_RECOVERY nomodeset"
fi

it's no wonder users have no simple way of adding nomodeset themselves,
from the environment, without editing the file.

jidanni

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

Carbon-Copy List
  • -email is unavailable- added by jidanni (Submitted the item)
  •  

    There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

     

    No changes have been made to this item

    Back to the top

    Powered by Savane 3.13-d3ae.
    Corresponding source code