PartialVolume/shredos.x86_64

Grub - create a generic grub.cfg that supports standard ShredOS boot path and PXE paths

PartialVolume opened this issue · 0 comments

This works ! It puts a prompt up on the screen after it fails the pxe boot then if you don't do anything after about 5 seconds or so it falls back and tries the standard path.

Be nice if it didn't have the prompt, don't know if there is an option to get rid of that.

Also, as most people probably? use a flash drive I would have the entries so standard boot was tried first then falls back to PXE.

set default="0"
set timeout="0"
set fallback="1"

title ShredOS_PXE
menuentry "ShredOS PXE" {
	linux ${cmdpath}../../../boot/shredos console=tty3 loglevel=3
}

title ShredOS_Standard
menuentry "Shredos Standard" {
	linux /boot/shredos console=tty3 loglevel=3
}

Screenshot_20230719_152212

Originally posted by @PartialVolume in #147 (comment)