Skip to content

Commit

Permalink
kernel-install: Use "Default" as fallback instead of "Linux"
Browse files Browse the repository at this point in the history
"Linux" conflicts /efi/Linux when /efi is the install location.
/efi/Linux is already reserved for unified kernel images so we can't use
it for type #1 images. Instead, we use "Default".
  • Loading branch information
DaanDeMeyer committed Aug 24, 2020
1 parent 46b875f commit 6426c98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kernel-install/kernel-install
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ KERNEL_IMAGE="$2"
if [[ -f /etc/machine-id ]]; then
read MACHINE_ID < /etc/machine-id
else
MACHINE_ID="Linux"
MACHINE_ID="Default"
fi

if [[ ! $COMMAND ]] || [[ ! $KERNEL_VERSION ]]; then
Expand Down

0 comments on commit 6426c98

Please sign in to comment.