-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
79c8428
commit b836200
Showing
2 changed files
with
17 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
if [ -f /EFI/VentoyLiveCD ]; then | ||
menuentry 'Ventoy Installer - Overwrite flash drive contents with Ventoy. ' { linux /EFI/boot/vmlinuz first_run rdinit=/VTOY/init; initrd /EFI/boot/initrd; boot} | ||
else | ||
menuentry "Want to Install Ventoy? Click here." { | ||
echo "This seems to be missing 3 files from the Ventoy LiveCD ISO. /EFI/boot/vmlinuz, /EFI/boot/initrd and /EFI/VentoyLiveCD" | ||
echo -n "Press <Enter> to continue" | ||
read pointless_variable | ||
} | ||
fi | ||
|
||
menuentry 'KeyTool - Secure Boot management tool.' { chainloader /EFI/boot/KeyTool.efi } | ||
|
||
if [ -f /antiX/vmlinuz ]; then | ||
menuentry 'antiX - Lightweight & practical Linux distro. ' { linux /antiX/vmlinuz from=all; initrd /antiX/initrd.gz; boot} | ||
else | ||
menuentry "Want to run antiX? Click here." { | ||
echo "Go to antixlinux.com & get an antiX iso. Then extract the antiX folder from inside. Place antiX folder next to EFI on the root of the flash drive." | ||
echo -n $"Press <Enter> to continue"" " | ||
read pointless_variable | ||
} | ||
fi | ||
|
||
if [ -f /EFI/VentoyLiveCD ]; then | ||
menuentry 'Ventoy Installer - Overwrite flash drive contents with Ventoy. ' { linux /EFI/boot/vmlinuz; initrd /EFI/boot/initrd; boot} | ||
else | ||
menuentry "Want to Install Ventoy? Click here." { | ||
echo "This seems to be missing 3 files from the Ventoy LiveCD ISO. /EFI/boot/vmlinuz, /EFI/boot/initrd and /EFI/VentoyLiveCD" | ||
echo -n $"Press <Enter> to continue"" " | ||
echo -n "Press <Enter> to continue" | ||
read pointless_variable | ||
} | ||
fi | ||
|
||
menuentry 'Want help?' { | ||
echo 'This file originated from https://github.com/catherinedoyel/ventoyimg view the readme or make an issue for assistance.' | ||
echo -n $'Press <Enter> to continue' | ||
echo -n "Press <Enter> to continue" | ||
read pointless_variable | ||
} |